QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#639008#5414. Stop, Yesterday Please No Morezyq_313#WA 58ms4380kbC++141.8kb2024-10-13 17:38:022024-10-13 17:38:04

Judging History

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

  • [2024-10-13 17:38:04]
  • 评测
  • 测评结果:WA
  • 用时:58ms
  • 内存:4380kb
  • [2024-10-13 17:38:02]
  • 提交

answer

#include <bits/stdc++.h>


using namespace std;

#define mkp make_pair

const int N = 1e6 + 10;
int n, m, k;
using pii = pair<int, int>;

string s;

int cnt[1010][1010] = {0};

void solve(){
	set<pii> path;

	cin >> n >> m >> k;
	int l = 1, r = m, u = 1, d = n;
	int maxu = u, mind = d, maxl = l, minr = r;
	cin >> s;
	int len = s.size();
	for (int i = 0; i < len; i ++){
		if (s[i] == 'U'){
			u ++;
			maxu = max(u, maxu);
			d ++;
		}else if (s[i] == 'D'){
			d --;
			mind = min(mind, d);
			u --;
		}else if (s[i] == 'L'){
			l ++;
			maxl = max(maxl, l);
			r ++;
		}else{
			r --;
			minr = min(minr, r);
			l --;
		}
	}
	int sum = (mind - maxu + 1) * (minr - maxl + 1);
	if (sum <= 0){
		if (k == 0){
			cout << n * m << endl;
			return ;
		}else{
			cout << 0 << endl;
			return ;
		}
	}
	
	
	
	
	int sx = maxu, sy = maxl;
	path.insert(make_pair(sx, sy));
	for (int i = 0; i < len; i ++){
		if (s[i] == 'U') sx --;
		else if (s[i] == 'D') sx ++;
		else if (s[i] == 'L') sy --;
		else sy ++;
		path.insert(make_pair(sx, sy));
	}
	
	map<pair<int, int>, int> mp;
	
	for (auto [x, y] : path){
		mp[mkp(x, y)] ++;
	}
	
	for (int i = maxl + 1; i <= minr; i ++){
		for (auto [x, y] : path){
			mp[mkp(x, y + (i - maxl))] ++;
		}
		
	}
	
	for (int i = maxu; i <= mind; i ++){
		for (auto [pos, dis] : mp){
			cnt[pos.first + (i - maxu)][pos.second] += dis; 
		}
	}
	
	
	if (sum < 0){
		sum = 0;
	}
	
	sum -= k;
	int ans = 0;
	
	for (int i = 1; i <= n; i ++){
		for (int j = 1; j <= m; j ++){
			if (cnt[i][j] == sum){
				ans ++;
//				cout << i << ' ' << j << endl;
				
			}
			cnt[i][j] = 0;
		}
	}
	
	
	cout << ans << endl;
	
	
	
	
}


int main(){
	ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
	int t = 1;
	cin >> t;
	while (t --) solve();
	
	
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3824kb

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

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:

0
11
20
99
18
15
34
240
15
0
0
13
14
18
26
16
1
19
108
8
2
2
3
7
0
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
34
0
3...

result:

wrong answer 1st numbers differ - expected: '228', found: '0'