QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#787651#5414. Stop, Yesterday Please No MorexuancaiWA 178ms4756kbC++142.3kb2024-11-27 13:48:092024-11-27 13:48:11

Judging History

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

  • [2024-11-27 13:48:11]
  • 评测
  • 测评结果:WA
  • 用时:178ms
  • 内存:4756kb
  • [2024-11-27 13:48:09]
  • 提交

answer

//
//  main.cpp
//  ICPC2022nanjingA
//
//  Created by Xuan Cai on 2024/11/27.
//

#include <iostream>
using namespace std;
#include <vector>
#include <map>
#include <utility>
void solve(){
    int n , m  , k  ;
    cin >> n >> m >> k ;
    string s; cin >> s;
    int L = 1 , R = m , U = 1 , D = n ;
    int x = 0 , y = 0 ;
    for(int i = 0 ; i < s.size() ; i++){
        if(s[i] == 'L'  ){
            if(x <= 0 && L <= m ){
                L++;
            }
            x--;
        }
        if(s[i] == 'R'  ){
            if(x >= 0 && R >= 1  ){
                R--;
            }
            x++;
        }
        if(s[i] == 'U'  ){
            if(y <= 0 && U <= m ){
                U++;
            }
            y--;
        }
        if(s[i] == 'D'  ){
            if(y >= 0 && U >= 1  ){
                D--;
            }
            y++;
        }
    }
    if( L > R   ||  U > D ) {
        if(k == 0 ) {
            cout << m * n  << endl; return;
        }else {
            cout << 0  << endl; return;
        }
    }
    map<pair<int, int> , int > dian;
    map<pair<int, int> , int > sum;
    int X = m - L + 1; int Y = n - U + 1;
    dian[{X , Y  } ] = 1;
    int XL  = m- L + 1 , XR = m - L  + 1 , YU = n - U + 1  ,  YD  = n - U  + 1;
    for(int i = 0 ; i < s.size() ; i++){
        if(s[i] == 'U') Y++;
        if(s[i] == 'D') Y--;
        if(s[i] == 'L') X++;
        if(s[i] == 'R') X--;
        dian[{X, Y}] = 1;
        XL = min(XL , X ) ;
        XR = max(XR , X) ;
        YU = min(YU , Y);
        YD = max(YD , Y) ;
    }
    int shu = (R - L + 1 ) * (D - U + 1);
    for(int i = XL; i <= XR ; i++){
        for(int j = YU; j <= YD; j++){
            sum[{i , j}] = sum[{i - 1 ,j }] + sum[{i , j - 1}] + dian[{i ,j}] - sum[{i - 1 , j - 1}];
        }
    }
    int res = 0 ;
    for(int i = 1; i <= m ; i++){
        for(int j = 1; j <= n ; j++){
            int down = i + D - U;
            int right = j + R - L ;
            shu =  (R - L + 1 ) * (D - U + 1) - sum[{right, down}] +  sum[{ right , j - 1 }] +  sum[{ i - 1, down }] - sum[{ i - 1 , j - 1}] ;
            if(shu == k) res++;
        }
    }
    cout << res << endl;
}
int main(int argc, const char * argv[]) {
    int t; cin >> t;
    while(t--) solve();
    return 0;
}

詳細信息

Test #1:

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

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: 178ms
memory: 4756kb

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
0
0
15
0
240
0
0
0
0
0
18
0
0
0
0
1
1
1
1
1
0
7
2
0
0
0
1
0
9
0
0
320
0
1
0
0
0
1
0
1
0
0
0
0
22
3
51
5
0
6
2
0
48
28
8
0
1
1
0
2
0
0
0
1
44
0
3
0
0
4
30
0
1
105
2
4
17
0
66
2
11
28
1
11
1
1
5
1
90
0
125
1
0
48
5
0
0
0
30
0
1
0
0
1
1
0
3
0
54
0
2
0
54
0
1
0
48
0
0
225
1
0
0
10
11
0
90
0
1
2...

result:

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