QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#180510#5414. Stop, Yesterday Please No MoreZhou_JKWA 16ms7692kbC++232.1kb2023-09-15 22:07:182023-09-15 22:07:19

Judging History

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

  • [2023-09-15 22:07:19]
  • 评测
  • 测评结果:WA
  • 用时:16ms
  • 内存:7692kb
  • [2023-09-15 22:07:18]
  • 提交

answer

#include<iostream>
#include<cstdio>
#include<vector>
#include<algorithm>
using namespace std;
const int N=1005,L=1000005;
int n,m,k;
int len;
char s[L];
int a[N][N],sum[N][N];
int getsum(int l1,int r1,int l2,int r2)
{
    l1=max(l1,1),r1=max(r1,1),l2=min(l2,n),r2=min(r2,m);
    return sum[l2][r2]-sum[l1-1][r2]-sum[l2][r1-1]+sum[l1-1][r1-1];
}
void solve()
{
    cin>>n>>m>>k;
    string str;
    cin>>str;
    len=str.size();
    for(int i=1;i<=len;i++)
        s[i]=str[i-1];
    int u=1,d=n,l=1,r=m;
    int curu=1,curd=n,curl=1,curr=m;
    for(int i=1;i<=len;i++)
    {
        if(s[i]=='U') curu++,curd++;
        else if(s[i]=='D') curu--,curd--;
        else if(s[i]=='L') curl++,curr++;
        else if(s[i]=='R') curr--,curl--;
        u=max(u,curu),d=min(d,curd),l=max(l,curl),r=min(r,curr);
    }
    if(u>d||l>r)
    {
        if(k==0) printf("%d\n",n*m);
        else printf("0\n");
        return;
    }
    int mnx=0,mny=0;
    int curx=0,cury=0;
    vector<pair<int,int>>pos;
    pos.emplace_back(curx,cury);
    for(int i=1;i<=n;i++)
    {
        if(s[i]=='U') curx--;
        else if(s[i]=='D') curx++;
        else if(s[i]=='L') cury++;
        else if(s[i]=='R') cury--;
        if(abs(curx)<d-u+1&&abs(cury)<r-l+1) pos.emplace_back(curx,cury);
        mnx=min(mnx,curx),mny=min(mny,cury);
    }
    mnx=-mnx,mny=-mny;
    mnx++,mny++;
    sort(pos.begin(),pos.end());
    pos.erase(unique(pos.begin(),pos.end()),pos.end());
    for(auto &[x,y]:pos)
        x+=mnx,y+=mny;
    for(int i=1;i<=n;i++)
        for(int j=1;j<=m;j++)
            a[i][j]=0;
    for(auto [x,y]:pos)
        a[x][y]++;
    for(int i=1;i<=n;i++)
        for(int j=1;j<=m;j++)
            sum[i][j]=a[i][j]+sum[i-1][j]+sum[i][j-1]-sum[i-1][j-1];
    int ans=0;
    for(int i=u;i<=d;i++)
        for(int j=l;j<=r;j++)
            if(getsum(mnx-(i-u),mny-(j-l),mnx+(d-i),mny+(r-j))==(d-u+1)*(r-l+1)-k) ans++;
    cout<<ans<<"\n";
    return;
}
int main()
{
    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: 2ms
memory: 7692kb

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: 16ms
memory: 6264kb

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
1
7
15
0
240
6
0
0
1
7
18
0
0
0
14
9
4
1
1
2
0
0
0
2
4
0
7
10
9
2
5
320
8
0
0
0
24
3
0
11
10
0
6
14
22
1
51
12
0
6
1
2
48
28
8
0
1
1
13
4
2
0
0
9
44
0
1
8
0
4
30
1
11
105
5
1
17
0
66
8
11
28
13
15
0
11
5
7
90
1
0
12
0
48
1
16
1
0
30
2
7
20
2
0
5
1
1
0
19
0
2
0
0
0
10
12
48
0
7
225
14
80
7
2...

result:

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