QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#177270 | #5414. Stop, Yesterday Please No More | dsakhdkas | WA | 0ms | 3596kb | C++14 | 2.1kb | 2023-09-12 19:31:22 | 2023-09-12 19:31:22 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
void solve() {
int n, m, k;
string s;
cin >> n >> m >> k >> s;
int len = s.size();
int mnx = n, mny = m;
int mxx = 1, mxy = 1;
int x = 0, y = 0;
for (int i = 0; i < len; i++) {
if (s[i] == 'L') --y;
if (s[i] == 'R') ++y;
if (s[i] == 'U') --x;
if (s[i] == 'D') ++x;
mnx = min(mnx, n-x);
mxx = max(mxx, 1-x);
mny = min(mny, m-y);
mxy = max(mxy, 1-y);
}
// mnx=-mnx;mxx=n-mxx;
// mny=-mny;mxy=m-mxy;
// mnx = x-mnx + 1, mxx = x+n - mxx;
// mny = y-mny + 1, mxy = y+m - mxy;
// cout<<mxx<<' '<<mnx<<' '<<mxy<<' '<<mny<<endl;
if (mnx >= mxx && mny >= mxy) {
int all = (mny - mxy + 1) * (mnx - mxx + 1)-1;
int ans = 0;
vector<vector<int>> a(n + 3, vector<int>(m + 3, 0));
auto add = [&](int x0, int y0) {
int sx = mxx + x0;
int sy = mxy + y0;
int ex = mnx + x0;
int ey = mny + y0;
sx = max(sx, 1); sx = min(sx, n);
sy = max(sy, 1); sy = min(sy, m);
ex = max(ex, 1); ex = min(ex, n);
ey = max(ey, 1); ey = min(ey, m);
a[sx][sy] += 1;
a[sx][ey + 1] -= 1;
a[ex + 1][sy] -= 1;
a[ex + 1][ey + 1] += 1;
};
int x = 0, y = 0;
vector<pair<int, int>> b;
for (int i = 0; i < len; i++) {
if (s[i] == 'L') --y;
if (s[i] == 'R') ++y;
if (s[i] == 'U') --x;
if (s[i] == 'D') ++x;
b.emplace_back(x, y);
}
sort(b.begin(), b.end());
b.resize(unique(b.begin(), b.end()) - b.begin());
for (auto [x, y] : b) {
add(x, y);
}
for (int i = 1; i <= n; i++)
for (int j = 1; j <= m; j++)
a[i][j] += a[i - 1][j];
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++) {
int ned = all - k;
int now = a[i][j];
if (now == ned) {
cerr << "ok: " << i << " " << j << endl;
ans += 1;
}
}
}
cout << ans << "\n";
} else {
if (k == 0) {
cout << n * m << "\n";
} else {
cout << 0 << "\n";
}
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int t;
cin >> t;
while (t--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3596kb
input:
3 4 5 3 ULDDRR 4 5 0 UUUUUUU 4 5 10 UUUUUUU
output:
7 20 0
result:
wrong answer 1st numbers differ - expected: '2', found: '7'