QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#227638#5414. Stop, Yesterday Please No MorexxcdsgWA 7ms6392kbC++141.6kb2023-10-27 20:23:392023-10-27 20:23:40

Judging History

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

  • [2023-10-27 20:23:40]
  • 评测
  • 测评结果:WA
  • 用时:7ms
  • 内存:6392kb
  • [2023-10-27 20:23:39]
  • 提交

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 + 2*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*n - 1;j++){
				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;
				if(dp[n + _t][m + _r] + dp[n + _b - 1][m + _l - 1] - dp[n + _b - 1][m + _r] - dp[n + _r][m + _l - 1] == 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: 5484kb

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: 6392kb

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
0
0
5
15
1
240
0
0
0
0
0
18
0
0
42
0
0
9
0
0
0
121
8
0
0
0
0
0
0
9
0
0
320
0
0
3
0
0
0
0
0
0
0
0
0
22
0
51
0
0
6
1
0
48
28
8
0
0
0
0
0
0
0
0
0
44
0
0
0
0
4
30
0
0
105
0
0
17
0
66
0
11
28
0
0
0
0
0
0
90
0
0
0
0
48
0
0
0
0
30
0
0
0
0
0
0
0
0
0
0
0
0
0
72
0
0
0
48
0
0
225
0
0
0
0
11
0
90
0
0
228...

result:

wrong answer 3rd numbers differ - expected: '20', found: '0'