QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#787676 | #5414. Stop, Yesterday Please No More | xuancai | WA | 205ms | 5060kb | C++14 | 2.3kb | 2024-11-27 13:59:09 | 2024-11-27 13:59:09 |
Judging History
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 ;
int xl =0;
int xr = 0 ;
int yl = 0;
int yr = 0 ;
for(int i = 0 ; i < s.size() ; i++){
if(s[i] == 'L' ) x--;
if(s[i] == 'R' ) x++;
if(s[i] == 'U' ) y--;
if(s[i] == 'D' ) y++;
xl = min(xl , x) ;
xr = max(xr , x) ;
yl = min(yl ,y) ;
yr = max(yr , y);
}
L = 1 + abs(xl);
R = m - abs(xr);
U = 1 + abs(yl);
D = n - abs(yr) ;
//cout << L << " " << R <<" " << U << " " << D <<endl;
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;
}
Details
Tip: Click on the bar to expand more detailed information
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: 205ms
memory: 5060kb
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 3 1 1 15 2 240 9 0 0 4 2 18 3 1 31 3 1 1 1 1 1 98 7 2 4 5 0 1 2 9 8 0 320 2 1 0 0 0 1 4 1 0 0 3 0 22 1 51 5 3 6 2 0 48 28 8 1 1 1 0 4 1 1 2 1 44 0 3 0 0 4 30 0 1 105 3 0 17 0 66 2 11 28 1 3 1 1 5 1 90 0 3 1 0 48 5 5 4 0 30 2 1 2 1 1 1 3 3 0 2 0 2 0 54 0 1 3 48 1 0 225 1 1 1 3 11 2 90 3 1 228 ...
result:
wrong answer 3rd numbers differ - expected: '20', found: '3'