QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#218521#5414. Stop, Yesterday Please No MorekokomiisbestWA 5ms4496kbC++141.8kb2023-10-18 14:28:342023-10-18 14:28:34

Judging History

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

  • [2023-10-18 14:28:34]
  • 评测
  • 测评结果:WA
  • 用时:5ms
  • 内存:4496kb
  • [2023-10-18 14:28:34]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
//\xd5\xfd\xc4\xd1\xd4򷴣\xac\xcf\xe0\xb6\xd4\xd4˶\xaf\xa3\xa1
//\xb4\xa6\xc0\xed\xb4\xfc\xca\xf3\xb5\xc4\xd4˶\xaf\xba\xdc\xc2\xa3\xacת\xbb\xaf\xb3ɴ\xa6\xc0\xed\xb1߽\xe7\xbaͶ\xb4\xb5\xc4\xd4˶\xaf\xa3\xa1
const int N = 1e3+10;
const int SN=1e6+10;
char s[SN];
int f[N][N];
int n,m,K;
void solve(){
    cin>>n>>m>>K;
    cin>>s;
    int U=1,D=n,L=1,R=m;//ά\xbb\xa4\xb1߽\xe7
    for(int i=1,u=1,d=n,l=1,r=m;s[i];i++){
        if(s[i]=='U') u++,d++;
        else if(s[i]=='D') u--,d--;
        else if(s[i]=='L') l++,r++;
        else l--,r--;
        U=max(U,u);
        D=min(D,d);
        L=max(L,l);
        R=min(r,R);
    }
    if(U>D||L>R)//\xcc\xd8\xc5\xd0û\xd3\xd0һֻ\xb4\xfc\xca\xf3\xb4\xe6\xbb\xee
    {
        if(K==0) cout<<n*m<<endl;
        else cout<<0<<endl;
        return;
    }
    //\xbc\xc6\xcb\xd3м\xb8ֻ\xb4\xfc\xca\xf3\xd0\xe8Ҫ\xd3ö\xb4\xbd\xe2\xbe\xf6
    int delta = (D-U+1)*(R-L+1)-K;
    if(delta<0){
        cout<<0<<endl;
        return;
    }
    //\xbc\xc7¼\xb6\xb4\xb5\xc4ƫ\xd2\xc6\xc1\xbf
    //ƫ\xd2Ʒ\xb6Χ\xca\xc7[-n,n] [-m,m],\xb6\xbc+n+1,m+1\xb1\xe4\xb3ɷǸ\xba\xca\xfd
    for(int i=0;i<n*2+5;i++){
        for(int j=0;j<m*2+5;j++){
            f[i][j]=0;
        }
    }
    int basic_r=n+1,basic_c=m+1;
    for(int i=1,r=basic_r,c=basic_c;s[i];i++){
        if(s[i]=='U') r++;
        else if(s[i]=='D') r--;
        else if(s[i]=='L') c++;
        else c--;
        f[r][c]=1;
    }
    //\xb6\xfeάǰ׺\xbaʹ\xa6\xc0\xedһ\xb8\xf6\xbf\xe9\xc7\xf8\xd3\xf2\xd3ж\xe0\xc9ٿ\xd3
    for(int i=1;i<n*2+5;i++){
        for(int j=1;j<m*2+5;j++){
            f[i][j]=f[i][j]+f[i-1][j]+f[i][j-1]-f[i-1][j-1];
        }
    }
    int ans=0;
    //ö\xbe\xd9\xd5ҵ\xbd\xb6\xb4\xcb\xf9\xd3п\xc9\xc4ܵij\xf5ʼ\xd7\xf8\xb1\xea
    for(int i=1;i<=n;i++){
        for(int j=1;j<=m;j++){
            int basicr=basic_r-i,basicc=basic_c-j;
            int x1=U+basicr,x2=D+basicr,y1=L+basicc,y2=R+basicc;
            int t=f[x2][y2]-f[x1-1][y2]-f[x2][y1-1]+f[x1-1][y1-1];
            if(t==delta) ans++;
        }
    }
    cout<<ans<<endl;
}
int main(){
    int t;
    cin>>t;
    while(t--){
        solve();
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 5ms
memory: 4496kb

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
4
0
19
0
0
240
6
3
0
0
9
18
0
0
7
6
0
0
2
0
0
0
0
30
16
5
0
0
2
9
14
0
320
11
2
0
0
0
0
0
0
0
0
14
0
22
0
51
0
7
0
7
21
48
28
8
0
0
0
0
0
4
0
10
0
44
0
26
0
0
4
30
0
0
105
5
25
17
0
66
0
0
28
0
0
0
0
0
0
90
0
0
0
0
48
24
36
13
24
30
8
0
3
8
0
0
0
34
0
19
0
34
0
9
37
0
27
48
11
8
225
0
0
112
1...

result:

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