QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#407242#5414. Stop, Yesterday Please No MorexiaoleWA 3ms6104kbC++232.3kb2024-05-08 12:18:242024-05-08 12:18:26

Judging History

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

  • [2024-05-08 12:18:26]
  • 评测
  • 测评结果:WA
  • 用时:3ms
  • 内存:6104kb
  • [2024-05-08 12:18:24]
  • 提交

answer

#include<bits/stdc++.h>
#define ios ios::sync_with_stdio(0),cin.tie(0),cout.tie(0)
using namespace std;using ll = long long;using PLL = pair<ll,ll>;
const ll MAX = 1e18;const ll MIN = -1e18;const ll INF=0x3f3f3f3f;
const ll Q = 2e5+9;const ll MOD = 1e9 + 7;
ll d[1005][1005];
bool vis[1005][1005];
void add(ll lx,ll ly,ll rx,ll ry){
    d[lx][ly]++;
    d[lx][ry+1]--;
    d[rx+1][ly+1]--;
    d[rx+1][ry+1]++;

}
void solve(){
   ll n,m,k;cin>>n>>m>>k;
   for (ll i = 0; i <= n; i++)
    for (ll j = 0; j <= m; j++)
        d[i][j]=0,vis[i][j]=false;
   string s;cin>>s;
   if(k==0){
    cout<<n*m<<"\n";
    return;
   }
    ll lx=1,ly=1;
    ll rx=n,ry=m;
    for (ll i = 0; i < s.size(); i++)
    {
        if(s[i]=='U'){lx--;rx--;if(lx<1) lx=1;}
        if(s[i]=='D'){lx++;rx++;if(rx>n) rx=n;}
        if(s[i]=='L'){ly--;ry--;if(ly<1) ly=1;}
        if(s[i]=='R'){ly++;ry++;if(ry>m) ry=m;}
    }
    if(lx>n or ly>m or rx<1 or ry<1){
        if(k==0) cout<<n*m<<"\n";
        else cout<<0<<"\n";
        return;
    }
    ll dele=(rx-lx+1)*(ry-ly+1)-k;
    if(dele<0) {
        cout<<0<<"\n";
        return;
    }
    reverse(s.begin(),s.end());
    add(lx,ly,rx,ry);
    ll clx=lx,cly=ly,crx=rx,cry=ry;
    for (ll i = 0; i < s.size(); i++)
    {
        if(s[i]=='U'){
            lx++,rx++;
            if(vis[lx][ly]==false){
                add(lx,ly,rx,ry);
            }vis[lx][ly]=true;
        }
        if(s[i]=='D'){
            lx--,rx--;
            if(vis[lx][ly]==false){
                add(lx,ly,rx,ry);
            }vis[lx][ly]=true;
        }
        if(s[i]=='L'){
            ly++,ry++;
            if(vis[lx][ly]==false){
                add(lx,ly,rx,ry);
            }vis[lx][ly]=true;
        }
        if(s[i]=='R'){
            ly--,ry--;
            if(vis[lx][ly]==false){
                add(lx,ly,rx,ry);
            }vis[lx][ly]=true;
        }
    }
    for (ll i = 1; i <= n; i++)
    {
        for (ll j = 1; j <= m; j++)
        {
            d[i][j]+=d[i-1][j]+d[i][j-1]-d[i-1][j-1];
        }
    }
    ll ans=0;
    for (ll i = clx; i <= crx; i++)
    {
        for (ll j = cly; j <= cry; j++)
        {
            if(d[i][j]==dele) ans++;
        }
    }
    cout<<ans<<"\n";
}
int main(){
    ios;ll _=1;cin>>_;
    while (_--)solve();
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 5576kb

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: 3ms
memory: 6104kb

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

result:

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