QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#782479#5414. Stop, Yesterday Please No Morexcxc82WA 9ms7924kbC++143.0kb2024-11-25 20:12:192024-11-25 20:12:21

Judging History

你现在查看的是最新测评结果

  • [2024-11-25 20:12:21]
  • 评测
  • 测评结果:WA
  • 用时:9ms
  • 内存:7924kb
  • [2024-11-25 20:12:19]
  • 提交

answer

#include<bits/stdc++.h>
#define raed read
using namespace std;
const int MAXN = 1010,INF = 0x3f3f3f3f,mod = 1e9+7;
const double eps = 0.0001;
inline int read(){
	int X=0; bool flag=1; char ch=getchar();
	while(ch<'0'||ch>'9') {if(ch=='-') flag=0; ch=getchar();}
	while(ch>='0'&&ch<='9') {X=(X<<1)+(X<<3)+ch-'0'; ch=getchar();}
	if(flag) return X;return ~(X-1);
}
int n,m,k,T,a[MAXN][MAXN];
int sum[MAXN][MAXN];
void Modify(int x1,int y1,int x2,int y2,int v){
	sum[x1][y1]+=v;
	sum[x2+1][y1]-=v;
	sum[x1][y2+1]-=v;
	sum[x2+1][y2+1]+=v;
}
unsigned long long M(unsigned long long a,unsigned long long b,unsigned long long c,unsigned long long d){
	unsigned long long now = 0;
	now = now*13331+a;
	now = now*13331+b;
	now = now*13331+c;
	now = now*13331+d;
	return now;
}
string s;
signed main(){
	T = read();
	while(T--){
		for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				sum[i][j] = 0;
			}
		}
		cin>>n>>m>>k;
		for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				a[i][j] = 1;
			}
		} 
		cin>>s;
		int MAXx = 0,MAXy = 0,MINx = 0,MINy = 0,nowx = 0,nowy = 0;
		int Stx = 0,Sty = 0,Edx = 0,Edy = 0;
		for(int i=0;i<s.length();i++){
			if(s[i]=='L') nowy--;
			if(s[i]=='R') nowy++;
			if(s[i]=='U') nowx--;
			if(s[i]=='D') nowx++;
			MAXx = max(MAXx,nowx);
			MINx = min(MINx,nowx);
			MAXy = max(MAXy,nowy);
			MINy = min(MINy,nowy);
		}
		int cnt = n*m;
		for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				if(i+MAXx>n||i+MINx<1||j+MAXy>m||j+MINy<1) a[i][j] = 0,cnt--;
			}
		}
		if(cnt<k){
			cout<<0<<endl;
			continue;
		}
		k = cnt-k;
		for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				if(a[i][j]){
					if(!Stx) Stx = i,Sty = j;
					Edx = i,Edy = j;
				}
			}
		}
		if(Stx){
			map<unsigned long long,int> mp;
			mp[M(Stx,Sty,Edx,Edy)] = 1;
			Modify(Stx,Sty,Edx,Edy,1);
			for(int i=0;i<s.length();i++){
				
				if(s[i]=='L'){
					Sty--;
					Edy--;
					if(mp[M(Stx,Sty,Edx,Edy)]) continue;
					mp[M(Stx,Sty,Edx,Edy)] = 1;
					Modify(Stx,Sty,Edx,Edy,1);
				}
				if(s[i]=='R'){
					Sty++;
					Edy++;
					if(mp[M(Stx,Sty,Edx,Edy)]) continue;
					mp[M(Stx,Sty,Edx,Edy)] = 1;
					Modify(Stx,Sty,Edx,Edy,1);
				}
				if(s[i]=='U'){
					Stx--;
					Edx--;
					if(mp[M(Stx,Sty,Edx,Edy)]) continue;
					mp[M(Stx,Sty,Edx,Edy)] = 1;
					Modify(Stx,Sty,Edx,Edy,1);
				}
				if(s[i]=='D'){
					Stx++;
					Edx++;
					if(mp[M(Stx,Sty,Edx,Edy)]) continue;
					mp[M(Stx,Sty,Edx,Edy)] = 1;
					Modify(Stx,Sty,Edx,Edy,1);
				}
			}
		}
		for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				sum[i][j] = sum[i-1][j]+sum[i][j-1]-sum[i-1][j-1]+sum[i][j];
			}
		}
		int ans = 0;
		for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				if(sum[i][j]==k) ans++;
			}
		}
		/*for(int i=1;i<=n;i++){
			for(int j=1;j<=m;j++){
				cout<<sum[i][j]<<" ";
			}
			cout<<endl;
		}*/
		cout<<ans<<endl;
	}
}
/*
3
4 5 3
ULDDRR
4 5 0
UUUUUUU
4 5 10
UUUUUUU

1
3 18 33
UDRLR
*/



Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 7924kb

input:

3
4 5 3
ULDDRR
4 5 0
UUUUUUU
4 5 10
UUUUUUU

output:

2
20
0

result:

ok 3 number(s): "2 20 0"

Test #2:

score: -100
Wrong Answer
time: 9ms
memory: 6156kb

input:

1060
19 12 0
UDLDDUUUUDDDLLRDUDUURULUUUDRDUDRDRLRLRLULULLLDLDDRLUUUURUUUDDRLLRUUUDULURUULLRDRLRDDURDUUURRRLURLRUULRRUDURDLUUURDLURDDLUUURDDRLLURRDLRUDLRDRLLRRDRDDLDRURRRLUDULLLRUUDLRRURRDLLRRRDLLRDDDLRLRURURDDDL
11 1 0
UR
3 18 33
UDRLR
17 11 132
RLDRDLDRUU
6 10 13
UULUDDLRDLUUDLDD
1 15 0
D
6 20 50
D...

output:

228
11
20
0
18
11
18
94
15
0
0
13
9
8
10
13
5
11
54
8
2
2
0
9
0
76
16
13
0
8
9
9
17
5
15
11
6
1
0
0
12
0
9
0
0
9
0
22
30
51
15
2
6
4
13
36
28
8
56
22
0
10
8
4
3
10
18
8
0
15
18
0
4
27
14
18
63
10
14
15
0
24
10
2
18
16
40
16
12
11
48
46
14
0
121
3
19
30
17
12
0
30
7
8
7
11
16
15
9
62
0
36
0
8
0
6
0
2...

result:

wrong answer 4th numbers differ - expected: '99', found: '0'