HDU 1540

来源:互联网 发布:淘宝助力打印发货单 编辑:程序博客网 时间:2024/05/16 13:48

Tunnel Warfare

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 3240    Accepted Submission(s): 1252


Problem Description
During the War of Resistance Against Japan, tunnel warfare was carried out extensively in the vast areas of north China Plain. Generally speaking, villages connected by tunnels lay in a line. Except the two at the ends, every village was directly connected with two neighboring ones.

Frequently the invaders launched attack on some of the villages and destroyed the parts of tunnels in them. The Eighth Route Army commanders requested the latest connection state of the tunnels and villages. If some villages are severely isolated, restoration of connection must be done immediately!
 

Input
The first line of the input contains two positive integers n and m (n, m ≤ 50,000) indicating the number of villages and events. Each of the next m lines describes an event.

There are three different events described in different format shown below:

D x: The x-th village was destroyed.

Q x: The Army commands requested the number of villages that x-th village was directly or indirectly connected with including itself.

R: The village destroyed last was rebuilt.
 

Output
Output the answer to each of the Army commanders’ request in order on a separate line.
 

Sample Input
7 9D 3D 6D 5Q 4Q 5RQ 4RQ 4
 

Sample Output
1024
 

Source
POJ Monthly
 

Recommend
LL
 

Statistic | Submit | Discuss | Note

#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#include<cmath>#include<set>using namespace std;#define nMax 5010set<int> S;int x;char s[nMax];int n,m;int st[nMax],top;int main() {freopen("input.txt","r",stdin);while(~scanf("%d%d",&n,&m)) {top = 0;S.clear() ;S.insert(0);S.insert(n+1);for(int i=0;i<m;i++) {scanf("%s",s);if(s[0]=='R') {if(top==0) continue;S.erase(st[top]);top--;}else {scanf("%d",&x);if(s[0]=='D') {st[++top]=x;S.insert(x);}else {if(S.count(x)){printf("%d\n",0);continue;}set<int>::iterator it = lower_bound(S.begin(),S.end(),x);int ret = *(it);it --;ret -= *(it);printf("%d\n",ret-1);}}}}return 0;}




原创粉丝点击