QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#634631 | #6422. Evil Coordinate | rerebornzhou | WA | 25ms | 3748kb | C++20 | 1.4kb | 2024-10-12 17:46:36 | 2024-10-12 17:46:36 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define IOS std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
#define int long long
#define ull unsigned long long
#define fi first
#define se second
#define pi pair<int,int>
const int N=1e6+10;
const int INF=1e18;
int a[N];
int b[N];
map<char,int> mp;
void solve(){
int x,y;
cin>>x>>y;
string s;
cin>>s;
if(x==0&&y==0){
cout<<"Impossible\n";
return;
}
mp.clear();
for(int i=0;i<s.size();i++){
mp[s[i]]++;
}
bool flag=0;
string dir="DLRU";
do{
int xx=0,yy=0;
for(int i=0;i<=3;i++){
int t=mp[dir[i]];
while(t--){
if(dir[i]=='U') yy++;
if(dir[i]=='D') yy--;
if(dir[i]=='L') xx--;
if(dir[i]=='R') xx++;
if(xx==x&&yy==y){
flag=1;
break;
}
}
}
if(flag==0){
string ss;
for(int i=0;i<=3;i++){
int t=mp[dir[i]];
while(t--){
ss+=dir[i];
}
}
cout<<ss<<"\n";
return;
}
}while(next_permutation(dir.begin(),dir.end()));
cout<<"Impossible\n";
}
signed main(){
IOS
int _=1;
cin>>_;
while(_--){
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3652kb
input:
5 1 1 RURULLD 0 5 UUU 0 3 UUU 0 2 UUU 0 0 UUU
output:
DLLRRUU UUU Impossible Impossible Impossible
result:
ok 5 cases
Test #2:
score: -100
Wrong Answer
time: 25ms
memory: 3748kb
input:
11109 6 0 RUDUDR 2 0 URU 0 0 UDRU 0 0 R -1 1 LDUUDDRUUL -1 5 RRUUUDUUU -8 4 RRDRLDR 2 0 UD 0 0 UUDD 3 -2 LDDLLLRR 3 -2 LDRURLDD 1 0 RRL -1 0 DUDDLLRDU -4 0 LL -1 -1 DLRLDLUDUR 1 4 URDULUR 0 0 DDUUDUDDDD 0 2 UU 1 0 RRULD 0 -2 LDLRLLDRRL 0 1 RLRLLRLUR -3 0 RL 0 0 D 0 0 L 0 0 DDLRRUDRUD 0 0 DULU 2 0 RR...
output:
DDRRUU RUU Impossible Impossible Impossible DRRUUUUUU DDLRRRR DU Impossible DDLLLLRR DDDLLRRU Impossible DDDDLLRUU LL Impossible DLRRUUU Impossible Impossible Impossible Impossible Impossible LR Impossible Impossible Impossible Impossible Impossible LLLRRRRRUU DLLLU Impossible DDDLUUU DDRRUU Impossi...
result:
wrong answer case 20, participant does not find an answer but the jury does