QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#570861#5414. Stop, Yesterday Please No MoreAbclWA 15ms4848kbC++143.8kb2024-09-17 18:29:502024-09-17 18:29:51

Judging History

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

  • [2024-09-17 18:29:51]
  • 评测
  • 测评结果:WA
  • 用时:15ms
  • 内存:4848kb
  • [2024-09-17 18:29:50]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
#define mod 1000000007
using namespace std;
const int N = 1005;
int n, m, k;
string s;
int xl, xr, yl, yr;

vector<pair<int, int> > nums;

int mp[N][N];

void solve() {
    cin >> n >> m >> k;
    for (int i = 0; i <= n; i++) {
        for (int j = 0; j <= m; j++) {
            mp[i][j] = 0;
        }
    }
    cin >> s;
    xl = 1, xr = n, yl = 1, yr = m;
    int nxl = 1, nxr = n, nyl = 1, nyr = m;
    for (int i = 0; i < s.length(); i++) {
        if (s[i] == 'U') {
            nyl++, nyr++;
            if (nyl > m) {
                if (k == 0)cout << n * m << endl;
                else cout << 0 << endl;
                return;
            }
            if (nyr > m) {
                nyr = m;
                yr--;
            }
        }
        else if (s[i] == 'D') {
            nyl--, nyr--;
            if (nyr < 1) {
                if (k == 0)cout << n * m << endl;
                else cout << 0 << endl;
                return;
            }
            if (nyl < 1) {
                nyl = 1;
                yl++;
            }
        }
        else if (s[i] == 'L') {
            nxl--, nxr--;
            if (nxr < 1) {
                if (k == 0)cout << n * m << endl;
                else cout << 0 << endl;
                return;
            }
            if (nxl < 1) {
                nxl = 1;
                xl++;
            }
        }
        else if (s[i] == 'R') {
            nxl++, nxr++;
            if (nxl > n) {
                if (k == 0)cout << n * m << endl;
                else cout << 0 << endl;
                return;
            }
            if (nxr > n) {
                nxr = n;
                xr--;
            }
        }
    }
    int sum = (yr - yl + 1) * (xr - xl + 1);
    int x = 0, y = 0;
    nums.push_back({ x,y });
    for (int i = 0; i < s.length(); i++) {
        if (s[i] == 'U') {
            y--;
            nums.push_back({ x,y });
        }
        else if (s[i] == 'D') {
            y++;
            nums.push_back({ x,y });
        }
        else if (s[i] == 'L') {
            x++;
            nums.push_back({ x,y });
        }
        else if (s[i] == 'R') {
            x--;
            nums.push_back({ x,y });
        }
    }

    int mix = 1e18, miy = 1e18;
    for (auto p = nums.begin(); p != nums.end(); p++) {
        mix = min(mix, p->first);
        miy = min(miy, p->second);
    }
    mix--; miy--;
    mix = -mix, miy = -miy;
    for (auto p = nums.begin(); p != nums.end(); p++) {
        mp[p->first + mix][p->second + miy] = 1;
    }
    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= m; j++) {
            mp[i][j] = mp[i][j] + mp[i - 1][j] + mp[i][j - 1] - mp[i - 1][j - 1];
            // cout<<mp[i][j]<<' ';
        }//cout<<endl;
    }

    int ans = 0;
    //枚举起点,1,1一直到n,m;
    for (int dx = 1; dx <= n; dx++) {
        for (int dy = 1; dy <= m; dy++) {
            int i = xl - dx, j = yl - dy;
            int x = mix + i, y = miy + j;
            int xx = mix + i + (xr - xl), yy = miy + j + (yr - yl);
            
           if (xx <= 0 && yy <= 0) {
                if ((0) == sum - k)ans++;
                continue;
            }
            x = max(1ll, x); y = max(1ll, y);
            xx = max(1ll, xx); yy = max(1ll, yy);
            
            //  cout<<xx<<' '<<yy<< ' '<<x<<' '<<y<<endl;
            if ((mp[xx][yy] + mp[x - 1][y - 1] - mp[x - 1][yy] - mp[xx][y - 1]) == sum - k)ans++;
        }
    }
    cout << ans << endl;
    return;
}
signed main() {
    //ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    //freopen("in.txt","r",stdin);
    //freopen("out.txt","w",stdout);
    int T_case = 1;
    cin >> T_case;
    while (T_case--) {
        solve();
    }
    return 0;
}

詳細信息

Test #1:

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

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: 15ms
memory: 4848kb

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
2
3
0
0
240
8
0
2
1
3
18
6
6
1
0
0
1
0
0
1
3
0
0
0
0
0
0
1
9
0
0
320
1
0
0
0
2
2
1
0
4
1
2
0
22
1
0
0
3
0
0
0
48
28
8
1
0
0
0
0
0
0
0
0
44
0
1
0
0
0
0
0
2
0
0
0
17
0
66
3
11
28
0
1
0
0
0
0
90
1
0
0
0
48
0
0
0
0
30
21
0
0
1
0
0
0
0
1
0
0
2
0
0
0
0
0
48
0
0
225
0
0
2
0
0
0
90
1
0
228
0
30
0
...

result:

wrong answer 4th numbers differ - expected: '99', found: '2'