QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#227657#5414. Stop, Yesterday Please No MorexxcdsgWA 7ms9628kbC++141.6kb2023-10-27 20:47:542023-10-27 20:47:54

Judging History

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

  • [2023-10-27 20:47:54]
  • 评测
  • 测评结果:WA
  • 用时:7ms
  • 内存:9628kb
  • [2023-10-27 20:47:54]
  • 提交

answer

// xxc
#include<bits/stdc++.h>
using namespace std;

#define endl '\n'
#define IOS ios::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);
#define ll long long
#define debug(x) cout << #x << ' ' << x << endl;

const int N = 3e3 + 10;

bool f[N][N];
int dp[N][N];

void test(){
	int n,m,k;cin >> n >> m >> k;
	for(int i = 1;i <= 2*n - 1;i++)
		for(int j = 1;j <= 2*m - 1;j++)
			f[i][j] = 0;
	string s;cin >> s;
	int t = n,b = 1,l = 1,r = m;
	int x = 0,y = 0;
	f[n][m] = 1;
	for(auto c : s){
		if(c == 'L'){
			x++;
			l = max(l,1 + x);
		}else if(c == 'R'){
			x--;
			r = min(r,m + x);
		}else if(c == 'U'){
			y--;
			t = min(t,n + y);
		}else{
			y++;
			b = max(b,1 + y);
		}
		if(x + m >= 0 && x + m <= 2*m - 1 && y + n >= 0 && y + n <= 2*n - 1){
			f[y + n][x + m] = 1;
		}
	}
	int mis = 0;
	if(!(b > t || l > r)) mis = ((t - b + 1) * (r - l + 1) - k);
	else mis = -k;
	if(mis < 0){
		cout << 0 << '\n';
	}else if(mis == 0){
		cout << n * m << '\n';
	}else{
		for(int i = 0;i <= 2*n - 1;i++){
			for(int j = 0;j <= 2*m - 1;j++){
				dp[i][j] = 0;
				if(i) dp[i][j] += dp[i - 1][j];
				if(j) dp[i][j] += dp[i][j - 1];
				if(i && j) dp[i][j] -= dp[i - 1][j - 1];
				if(f[i][j])
					dp[i][j]++;
			}
		}	
		int ans = 0;
		for(int i = 1;i <= n;i++)
			for(int j = 1;j <= m;j++){
				int _t = t - i,_b = b - i,_l = l - j,_r = r - j;
				int u = n + _t,o = m + _r;
				int z = n + _b - 1,p = m + _l - 1;
				if(dp[u][o] + dp[z][p] - dp[z][o] - dp[u][p] == mis){
					ans++;
				}
			}
		cout << ans << '\n';
	}
}

int main(){
	IOS
	int t = 1;cin >> t;
	while(t--){
		test();
	}
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 7ms
memory: 9628kb

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
99
18
15
34
240
15
0
0
13
14
18
26
16
42
19
108
8
2
2
3
121
8
30
16
21
0
8
10
9
15
5
320
11
7
3
0
0
12
0
11
0
0
14
0
22
36
51
23
7
6
4
2
48
28
8
63
22
49
13
10
4
108
10
18
44
0
15
9
0
4
30
14
99
105
10
14
17
0
66
10
11
28
52
34
56
33
14
56
90
14
0
121
3
48
30
36
13
0
30
7
8
3
11
16
45
20
3...

result:

wrong answer 17th numbers differ - expected: '1', found: '42'