QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#505950#6422. Evil CoordinateMOUZ_donkAC ✓16ms3828kbC++202.1kb2024-08-05 14:01:112024-08-05 14:01:12

Judging History

This is the latest submission verdict.

  • [2024-08-05 14:01:12]
  • Judged
  • Verdict: AC
  • Time: 16ms
  • Memory: 3828kb
  • [2024-08-05 14:01:11]
  • Submitted

answer

#include<bits/stdc++.h>
const int N=1e3+10;
const int M=2e6+10;
#define int long long
typedef double db;
typedef long long ll;
using namespace std;
using pii = pair<int,int>;
#define up(i,a,b) for(int i=(a);i<=(b);++i)
#define down(i,a,b) for(int i=(a);i>=(b);--i)
#define puts(a) (cout<<a<<endl)
#define inf (0x7fffffff)
const int MOD=100003;
int mx,my;
int a[4] = {0,1,2,3};
int dir[4] = {0};
int op[4][2] = {{0,1},{0,-1},{-1,0},{1,0}};
map<int,string>mp;
bool check(){
    int x = 0,y = 0;
    for(int i = 0;i < 4;i++){
        for(int j = 0;j < dir[a[i]];j++){
            x+=op[a[i]][0];
            y+=op[a[i]][1];
            if(x == mx&&y == my)
                return false;
        }
    }
    return true;
}


void solve(){
    mp[0] = 'U',mp[1] = 'D',mp[2] = 'L',mp[3] = 'R';

        cin >> mx >> my;
        string s;
        cin >> s;
        int x = 0,y = 0;
        memset(dir,0,sizeof(dir));
        a[0] = 0,a[1] = 1,a[2] = 2,a[3] = 3;
        for(int i = 0;i < s.size();i++){
            if(s[i] == 'U'){
                dir[0]++;
                y++;
            }
            if(s[i] == 'D'){
                dir[1]++;
                y--;
            }
            if(s[i] == 'L'){
                dir[2]++;
                x--;
            }
            if(s[i] == 'R'){
                dir[3]++;
                x++;
            }
        }
        if((mx == 0&&my == 0)||(x == mx&&y == my)){
            cout << "Impossible\n";
            return ;
        }
        bool finds = 0;
        bool flag=1;
        while(flag){

            if(check()){
                finds = 1;
                for(int i = 0;i < 4;i++){
                    for(int j = 0;j< dir[a[i]];j++)
                        cout<<mp[a[i]];
                }
                cout<<endl;
                break;
            }
            if(!next_permutation(a,a+4))
                flag=0;
        }

        if(!finds)
            cout << "Impossible\n";

}


signed main() {
int T;
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
    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: 0ms
memory: 3536kb

input:

5
1 1
RURULLD
0 5
UUU
0 3
UUU
0 2
UUU
0 0
UUU

output:

UUDLLRR
UUU
Impossible
Impossible
Impossible

result:

ok 5 cases

Test #2:

score: 0
Accepted
time: 16ms
memory: 3820kb

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:

UUDDRR
UUR
Impossible
Impossible
Impossible
UUUUUUDRR
DDLRRRR
UD
Impossible
DDLLLLRR
UDDDLLRR
Impossible
UUDDDDLLR
LL
Impossible
UUUDLRR
Impossible
Impossible
Impossible
LLLLLDDRRR
Impossible
LR
Impossible
Impossible
Impossible
Impossible
Impossible
LLLRRRRRUU
UDLLL
Impossible
UUUDDDL
UUDDRR
Impossi...

result:

ok 11109 cases

Test #3:

score: 0
Accepted
time: 15ms
memory: 3828kb

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:

ULLLLRRRR
LLRR
R
LLLLRRRR
ULR
DU
ULLRR
DDDDUUUU
ULLLLRRRR
LLRR
ULR
R
DDDUUUR
DDDDUUUU
DDDUUU
LLLLLRRRRR
LLLRRR
ULR
U
LLLLRRRR
DDDDUUUUR
DDDUUUR
LLLRRR
DDDDUUUU
R
DDDUUU
DDDUUU
LLLLLRRRRR
DDDDUUUU
DDUU
ULLLLRRRR
DDUU
LLLRRR
ULR
ULR
U
ULR
LLLRRR
LLLLLRRRRR
U
DDDUUU
R
LLLRRR
DDDDUUUUR
DDDDUUUUR
LLLRRR
...

result:

ok 11107 cases