QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#694569#5414. Stop, Yesterday Please No More42m0rr0wWA 0ms4068kbC++202.0kb2024-10-31 18:13:042024-10-31 18:13:05

Judging History

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

  • [2024-10-31 18:13:05]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:4068kb
  • [2024-10-31 18:13:04]
  • 提交

answer

#include <bits/stdc++.h>
#define test(x) cout<<#x<<" = "<<x<<endl
#define endl '\n'
#define int long long
using namespace std;
const int MAXN = 1e3 + 100;
int n, m, k;
string s;
int a[MAXN][MAXN];

void solve() {
	cin >> n >> m >> k >> s;
	s = "#" + s;
	int sz = s.size();
	for (int j = 0; j <= m + 1; ++j)
		for (int i = 0; i <= n + 1; ++i)
			a[i][j] = 0;
	int x = 0, y = 0, u = 0, d = 0, l = 0, r = 0;
	for (int i = 1; i <= sz; ++i) {
		if (s[i] == 'U')
			++y;
		else if (s[i] == 'D')
			--y;
		else if (s[i] == 'L')
			--x;
		else if (s[i] == 'R')
			++x;
		u = max(u, y);
		d = min(d, y);
		l = min(l, x);
		r = max(r, x);
	}
	if (m - r < 1 - l || n - u < 1 - d) {
		if (k == 0)
			cout << m *n << endl;
		else
			cout << 0 << endl;
		return ;
	}
	x = -l + 1, y = -d + 1;
	int dx = m + l - r, dy = n + d - u;
	a[y][x] = 1;
	a[y][min(m + 1, x + dx)] = -1;
	for (int i = 1; i <= sz; ++i) {
		if (s[i] == 'U')
			++y;
		else if (s[i] == 'D')
			--y;
		else if (s[i] == 'L')
			--x;
		else if (s[i] == 'R')
			++x;
		a[y][x] = 1;
		a[y][min(m + 1, x + dx)] = -1;
	}

//	for (int i = 1; i <= n; ++i)
//		for (int j = 1; j <= m; ++j)
//			cout << a[i][j] << " \n"[j == m];

	for (int i = 1; i <= n; ++i)
		for (int j = 1; j <= m; ++j)
			a[i][j] += a[i][j - 1];

//	for (int i = 1; i <= n; ++i)
//		for (int j = 1; j <= m; ++j)
//			cout << a[i][j] << " \n"[j == m];

	for (int i = 1; i <= n; ++i)
		for (int j = 1; j <= m; ++j)
			a[min(n + 1, i + dy)][j] -= a[i][j];
	for (int j = 1; j <= m; ++j)
		for (int i = 1; i <= n; ++i)
			a[i][j] += a[i - 1][j];
	int ans = 0;
	for (int j = 1; j <= m; ++j)
		for (int i = 1; i <= n; ++i)
			ans += (a[i][j] == k);

//	for (int i = 1; i <= n; ++i)
//		for (int j = 1; j <= m; ++j)
//			cout << a[i][j] << " \n"[j == m];

	cout << ans << endl;
}

signed main() {
	ios::sync_with_stdio(0);
	cin.tie(0);
	int tt = 1;
	cin >> tt;
	while (tt--)
		solve();
}
/*
3
4 5 3
ULDDRR
4 5 0
UUUUUUU
4 5 10
UUUUUUU

*/

详细

Test #1:

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

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

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
0
15
0
240
0
0
0
0
0
18
0
0
0
0
0
0
2
2
0
0
0
0
0
0
0
0
0
9
12
0
320
0
0
3
0
0
0
0
0
0
0
0
0
22
0
51
0
9
6
0
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
6
48
0
0
0
0
30
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
48
0
0
225
0
0
0
0
11
0
90
0
0
228
0
...

result:

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