QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#704463#5414. Stop, Yesterday Please No MoreKanateWA 6ms6360kbC++172.0kb2024-11-02 20:01:582024-11-02 20:02:00

Judging History

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

  • [2024-11-02 20:02:00]
  • 评测
  • 测评结果:WA
  • 用时:6ms
  • 内存:6360kb
  • [2024-11-02 20:01:58]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long

const int M = 2e3 + 7;
const int N = 1e6 + 7;

int T;
int n, m, k;
int ans;
string s;

int a[M][M];
int fx[4] = {0, 0, 1, -1};
int fy[4] = {1, -1, 0, 0};

int get(char s)
{
	if (s == 'U')
		return 2;
	if (s == 'L')
		return 0;
	if (s == 'D')
		return 3;
	return 1;
}

int pre(int x1, int y1, int x2, int y2)
{
	int ans = a[x2][y2] + a[x1 - 1][y1 - 1] - a[x1 - 1][y2] - a[x2][y1 - 1];
	return ans;
}

signed main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout.tie(0);
	cin >> T;
	while (T-- > 0)
	{
		cin >> n >> m >> k;
		for (int i = 1; i <= 2 * n; i++)
			for (int j = 1; j <= 2 * m; j++)
				a[i][j] = 0;
		cin >> s;
		bool flag = 0;
		ans = 0;
		int dx = n, dy = m;
		int mxx = n, mix = 1, mxy = m, miy = 1;
		a[n][m] = 1;
		for (auto v : s)
		{
			int nx = get(v);
			dx += fx[nx];
			dy += fy[nx];
			if (dx <= 0 || dx > 2 * n - 1 || dy <= 0 || dy > 2 * m - 1)
			{
				if (k == 0)
					cout << n * m << endl;
				else
					cout << 0 << endl;
				flag = 1;
				break;
			}
			a[dx][dy] = 1;
			mxx = min(mxx, 2 * n - dx);
			mix = max(mix, n - dx + 1);
			mxy = min(mxy, 2 * m - dy);
			miy = max(miy, m - dy + 1);
		}
		if (flag == 1)
			continue;
		if (mix > mxx || miy > mxy)
		{
			if (k == 0)
				cout << n * m << endl;
			else
				cout << 0 << endl;
			flag = 1;
		}
		if (flag == 1)
			continue;
		for (int i = 1; i <= n * 2; i++)
			for (int j = 1; j <= m * 2; j++)
				a[i][j] += a[i][j - 1];
		for (int j = 1; j <= m * 2; j++)
			for (int i = 1; i <= n * 2; i++)
				a[i][j] += a[i - 1][j];
		int now = (mxx - mix + 1) * (mxy - miy + 1);
		for (int i = 1; i <= n; i++)
			for (int j = 1; j <= m; j++)
			{
				int x1 = mix - i + n;
				int x2 = mxx - i + n;
				int y1 = miy - j + m;
				int y2 = mxy - j + m;
				if (now - pre(x1, y1, x2, y2) == k)
				{
					ans++;
				}
			}
		cout << ans << endl;
	}
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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

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

result:

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