QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#227813 | #6699. Wandering Robot | ekatsim | AC ✓ | 11ms | 3516kb | C++17 | 854b | 2023-10-28 00:13:14 | 2023-10-28 00:13:14 |
Judging History
answer
#include<bits/stdc++.h>
#define lson(x) x<<1
#define rson(x) x<<1|1
#define inf 1000000000000000000
#define int long long
using namespace std;
const int maxn=1e5+5;
char str[maxn];
int ans;
void check(int&x,int&y,int n)
{
for(int i=1;i<=n;i++)
{
if(str[i]=='U')
y++;
else if(str[i]=='D')
y--;
else if(str[i]=='L')
x--;
else
x++;
ans=max(ans,abs(x)+abs(y));
}
}
void solve()
{
ans=0;
int n,k;
cin>>n>>k;
cin>>str+1;
int x=0,y=0;
check(x,y,n);
x*=(k-1);
y*=(k-1);
check(x,y,n);
cout<<ans<<"\n";
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t=1;
cin>>t;
while(t--)
{
solve();
}
return 0;
}
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3420kb
input:
2 3 3 RUL 1 1000000000 D
output:
4 1000000000
result:
ok 2 number(s): "4 1000000000"
Test #2:
score: 0
Accepted
time: 11ms
memory: 3516kb
input:
10307 33 374631889 RUDUUDLDDUULULDRDDRRRRDDDLRURULDL 9 40711970 UUDLRDRDD 3 111498848 LRL 14 804199874 LRRLLRULRUURUU 44 936610223 ULDRUULRRDLRRLRLRLRDUDDUDDUUDDLRUUDRUURLULUD 15 669124042 RUULRLDDULUDRDR 47 500758328 LRULULLLLUDURLRRDLDDLUUDURUDDLLLLDRLULURDULRDLU 18 581526184 DLLUDUUULUDULULRLR 47...
output:
1873159447 122135910 111498848 4825199244 3746440893 669124044 5508341608 4652209473 5606278385 8301130033 3707957881 2821884978 463006533 1581485530 881213211 236693627 816980016 4406947601 1057578188 1455154265 4107693543 5705944723 3424946932 1154164548 4496114815 3733695266 6323077602 2262619671...
result:
ok 10307 numbers