QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#703858#5414. Stop, Yesterday Please No Morefsy_juruoTL 92ms12920kbC++141.9kb2024-11-02 18:43:462024-11-02 18:43:50

Judging History

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

  • [2024-11-02 18:43:50]
  • 评测
  • 测评结果:TL
  • 用时:92ms
  • 内存:12920kb
  • [2024-11-02 18:43:46]
  • 提交

answer

#include <bits/stdc++.h>

using LL = long long;

int T, n, m, k;
std::string str;

const int maxN = 1e3 + 10;
std::unordered_set<int> s;
int b[maxN << 1][maxN << 1];

void modify(int lx, int ly, int rx, int ry) {
	b[rx + 1][ry + 1] += 1;
	b[lx][ly] += 1;
	b[rx + 1][ly] -= 1;
	b[lx][ry + 1] -= 1;
}
int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
	
	std::cin >> T;
	while(T--) {
		std::cin >> n >> m >> k >> str;
		
		int min_x = 0, min_y = 0, max_x = 0, max_y = 0;
		int cx = 0, cy = 0; 
		for(auto c : str) {
			if(c == 'U') cx--;
			if(c == 'D') cx++;
			if(c == 'L') cy--;
			if(c == 'R') cy++;
			
			min_x = std::min(min_x, cx);
			min_y = std::min(min_y, cy);
			max_x = std::max(max_x, cx);
			max_y = std::max(max_y, cy);
		}
		
		int lf_x = 1 - min_x, lf_y = 1 - min_y, 
			rg_x = n - max_x, rg_y = m - max_y;
		if(lf_x > rg_x || lf_y > rg_y || max_x >= n || min_x <= -n || max_y >= m || min_y <= -m) {
			std::cout << (k == 0 ? n * m : 0) << "\n";
			continue;
		}
		
		for(int i = 1; i <= n + 1; i++) {
			for(int j = 1; j <= m + 1; j++) b[i][j] = 0;
		}
		
		int x = lf_x, y = lf_y, rx = rg_x, ry = rg_y;
		modify(lf_x, lf_y, rg_x, rg_y);
		
		s.clear();
		s.insert(lf_x * m + lf_y);
		
		for(auto c : str) {
			if(c == 'U') x--, rx--;
			if(c == 'D') x++, rx++;
			if(c == 'L') y--, ry--;
			if(c == 'R') y++, ry++;
			
			std::cerr << lf_x << " " << lf_y << " " << x << " " << y << " " << rx << " " << ry << "\n";
			if(s.count(x * m + y) == 0) {
				modify(x, y, rx, ry);
				s.insert(x * m + y);
			}
		}
		
		int ans = 0;
		for(int i = 1; i <= n; i++) {
			for(int j = 1; j <= m; j++) {
				b[i][j] += b[i - 1][j] + b[i][j - 1] - b[i - 1][j - 1];
			}
		}
		
		for(int i = 1; i <= n; i++) {
			for(int j = 1; j <= m; j++) {
				ans += (k == (rg_x - lf_x + 1) * (rg_y - lf_y + 1) - b[i][j]);
			}
		}
		
		std::cout << ans << "\n";
	}	 
	return 0;
}

详细

Test #1:

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

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: 0
Accepted
time: 92ms
memory: 4136kb

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
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...

result:

ok 1060 numbers

Test #3:

score: 0
Accepted
time: 0ms
memory: 11768kb

input:

1
1000 1000 979065
DDUULULUDULLULLDLUULURRLDURLRDLRRUURUUUDLRLUUDUUDUDLLDDDULU

output:

958416

result:

ok 1 number(s): "958416"

Test #4:

score: 0
Accepted
time: 4ms
memory: 12920kb

input:

1
1000 1000 943471
LRLDLURLDLRDRDUULULRDDLLRURDUURLLDDLDLDDLLLUUURLDRUDRLLUUUUUDLUUDLURURRDLRLRRRLULRRULURLRRDLDRLUDRRLDDLUDRRLLUDLLLRDULRRRRLDUUDRDLULUUUUDRRDULUDLLUUDLDURDRRLRRLDRLDDRURURLUULRRLDLLRLRDRRUULDLDLULLDLLRULLRUULURDURRLUUDUULLULDLRUDDLRLRLLUDDDLLLUDRRLDDULRRURRDURDDRDLLULRLULURLRDLLURD...

output:

889224

result:

ok 1 number(s): "889224"

Test #5:

score: -100
Time Limit Exceeded

input:

1
1000 1000 315808
LLRURURRDDDULLDDUDRDLRLLLDDDLUDRDURLDULRLRULUUDLUULUUDULLLLDDURLDUULUUDLLDLLDRUDUULRLLRLRUURLRLULLDDLLDUDLLRUUDRLDLUULDLLDRRRURDULLDRRRDURURDRLDURURUDLURLDURRLRRUDUDURDRLRRRDLRRURLURUDRRLDLRULLDLUURDURLURLLRDLRDRUURURDRUDUUUDLRRLUDLUUDUDDRRDUULUUDDRLLULDUUDRURRDRLULRLULDURLURUDLLD...

output:


result: