QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#612849 | #6422. Evil Coordinate | pugong# | AC ✓ | 14ms | 3864kb | C++20 | 2.1kb | 2024-10-05 13:11:16 | 2024-10-05 13:11:16 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
void solve(){
int mx,my;cin>>mx>>my;
string s;cin>>s;
if(mx==0&&my==0){
cout<<"Impossible\n";
return;
}
map<char,int>mp;
int y=0,x=0;
for(auto i:s){
mp[i]++;
if(i=='U') y++;
if(i=='D') y--;
if(i=='L') x--;
if(i=='R') x++;
}
if(x==mx&&y==my){
cout<<"Impossible\n";
return;
}
auto ch=[&](int nx,int ny){
if(nx==mx&&ny==my) return true;
else return false;
};
string ans="ULDR";
string end;
sort(ans.begin(),ans.end());
do{
int nx=0,ny=0,ok=1;
//cout<<ans<<endl;
for(int i=0;i<4;i++) {
if (ch(nx, ny)) ok = 0;
if (ans[i] == 'U') {
int tem = mp['U'];
while (tem--) {
ny++;
if (ch(nx, ny)) ok = 0;
}
} else if (ans[i] == 'R') {
int tem = mp['R'];
while (tem--) {
nx++;
if (ch(nx, ny)) ok = 0;
}
} else if (ans[i] == 'L') {
int tem = mp['L'];
while (tem--) {
nx--;
if (ch(nx, ny)) ok = 0;
}
} else if (ans[i] == 'D') {
int tem = mp['D'];
while (tem--) {
ny--;
if (ch(nx, ny)) ok = 0;
}
}
}
if(ok){
end+=string(mp[ans[0]],ans[0]);
end+=string(mp[ans[1]],ans[1]);
end+=string(mp[ans[2]],ans[2]);
end+=string(mp[ans[3]],ans[3]);
break;
}
}while(next_permutation(ans.begin(),ans.end()));
if(end.empty()){
cout<<"Impossible\n";
}else{
cout<<end<<"\n";
}
}
signed main(){
ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int T=1;
cin>>T;
while(T--){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3536kb
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: 0
Accepted
time: 11ms
memory: 3864kb
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 LLLLLDDRRR Impossible LR Impossible Impossible Impossible Impossible Impossible LLLRRRRRUU DLLLU Impossible DDDLUUU DDRRUU Impossi...
result:
ok 11109 cases
Test #3:
score: 0
Accepted
time: 14ms
memory: 3732kb
input:
11107 1 0 LLRLRURLR 1 0 LLRR 0 1 R 1 0 LLLRLRRR 1 0 RUL 0 1 UD 1 0 RLRLU 0 1 DDDUUUDU 1 0 RURRLLRLL 1 0 LRLR 1 0 ULR 0 1 R 0 1 DDUUUDR 0 1 UUDDUDDU 0 1 DDUUDU 1 0 RRLRLLRLRL 1 0 RLRRLL 1 0 LUR 1 0 U 1 0 LRRRLLLR 0 1 DRUUDDUDU 0 1 DUUDDUR 1 0 LRLRLR 0 1 UUDDDUDU 0 1 R 0 1 UDUDDU 0 1 DUUDUD 1 0 RRLRRR...
output:
LLLLRRRRU LLRR R LLLLRRRR LRU DU LLRRU DDDDUUUU LLLLRRRRU LLRR LRU R DDDRUUU DDDDUUUU DDDUUU LLLLLRRRRR LLLRRR LRU U LLLLRRRR DDDDRUUUU DDDRUUU LLLRRR DDDDUUUU R DDDUUU DDDUUU LLLLLRRRRR DDDDUUUU DDUU LLLLRRRRU DDUU LLLRRR LRU LRU U LRU LLLRRR LLLLLRRRRR U DDDUUU R LLLRRR DDDDRUUUU DDDDRUUUU LLLRRR ...
result:
ok 11107 cases