hdu 4031 Attack

來源:互聯網
上載者:User

標籤:des   style   blog   color   java   os   strong   io   

Attack

Time Limit: 5000/3000 MS (Java/Others)    Memory Limit: 65768/65768 K (Java/Others)
Total Submission(s): 1734    Accepted Submission(s): 506

Problem DescriptionToday is the 10th Annual of “September 11 attacks”, the Al Qaeda is about to attack American again. However, American is protected by a high wall this time, which can be treating as a segment with length N. Al Qaeda has a super weapon, every second it can attack a continuous range of the wall. American deployed N energy shield. Each one defends one unit length of the wall. However, after the shield defends one attack, it needs t seconds to cool down. If the shield defends an attack at kth second, it can’t defend any attack between (k+1)th second and (k+t-1)th second, inclusive. The shield will defend automatically when it is under attack if it is ready.

During the war, it is very important to understand the situation of both self and the enemy. So the commanders of American want to know how much time some part of the wall is successfully attacked. Successfully attacked means that the attack is not defended by the shield. InputThe beginning of the data is an integer T (T ≤ 20), the number of test case.
The first line of each test case is three integers, N, Q, t, the length of the wall, the number of attacks and queries, and the time each shield needs to cool down.
The next Q lines each describe one attack or one query. It may be one of the following formats
1. Attack si ti
  Al Qaeda attack the wall from si to ti, inclusive. 1 ≤ si ≤ ti ≤ N
2. Query p
  How many times the pth unit have been successfully attacked. 1 ≤ p ≤ N
The kth attack happened at the kth second. Queries don’t take time.
1 ≤ N, Q ≤ 20000
1 ≤ t ≤ 50 OutputFor the ith case, output one line “Case i: ” at first. Then for each query, output one line containing one integer, the number of time the pth unit was successfully attacked when asked. Sample Input2 3 7 2 Attack 1 2 Query 2 Attack 2 3 Query 2 Attack 1 3 Query 1 Query 3 9 7 3 Attack 5 5 Attack 4 6 Attack 3 7 Attack 2 8 Attack 1 9 Query 5 Query 3
Sample OutputCase 1:0101Case 2:32 
 1 #include<iostream> 2 #include<string> 3 #include<cstdio> 4 #include<vector> 5 #include<queue> 6 #include<stack> 7 #include<algorithm> 8 #include<cstring> 9 #include<stdlib.h>10 #include<string>11 #include<cmath>12 #include<map>13 using namespace std;14 #define pb push_back15 #define mmax 10000016 int p[21000],First[21000],cx_love[21000][2],now[21000],ans[21000];17 int n,m,t;18 void update(int pos,int num){19     while(pos<=20000){20         p[pos]+=num;21         pos+=pos&(-pos);22     }23 }24 int getnum(int pos){25     int sum=0;26     while(pos>=1){27         sum+=p[pos];28         pos-=pos&(-pos);29     }30     return sum;31 }32 int main(){33      #ifndef ONLINE_JUDGE34             freopen("input.txt","r" ,stdin);35         #endif // ONLINE_JUDGE36     int cas,so=0,cnt;cin>>cas;37     while(cas--){38         memset(p,0,sizeof(p));39         for(int i=1;i<=n;i++) now[i]=1;40         memset(ans,0,sizeof(ans));41         cin>>n>>m>>t;42         char love[10];43         int a,b;44         cnt=0;45         printf("Case %d:\n",++so);46         for(int j=1;j<=m;j++){47             scanf("%s",love);48             if(love[0]==‘A‘){49                 scanf("%d%d",&a,&b);50                 cnt++;51                 cx_love[cnt][0]=a,cx_love[cnt][1]=b;52                 update(a,1);53                 update(b+1,-1);54             }55             else{56                 scanf("%d",&a);57                 int sum=getnum(a);58                 while(now[a]<=cnt){59                     if(cx_love[now[a]][0]<=a&&a<=cx_love[now[a]][1]){60                         now[a]+=t;61                         ans[a]++;62                     }63                     else now[a]++;64                 }65                 //ans[a] 記錄的是a抵擋攻擊的次數66                 //now[a] 記錄的是a最後抵擋攻擊的時間67                 printf("%d\n",sum-ans[a]);68             }69         }70     }71 }

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.