QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#506275 | #6422. Evil Coordinate | mmzskm | TL | 0ms | 3540kb | C++20 | 1.8kb | 2024-08-05 16:21:35 | 2024-08-05 16:21:37 |
Judging History
answer
#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#include<map>
#include<iomanip>
#include<cmath>
using namespace std;
using ll = long long;
#define int ll
void solve()
{
int xx, yy;
cin >> xx >> yy;
string s;
cin >> s;
if (xx == 0 && yy == 0)
{
cout << "Impossible" << endl;
return;
}
int u = 0, r = 0, l = 0, d = 0;
for (int i = 0; i < s.length(); i++)
{
switch (s[i])
{
case 'U':
u++;
break;
case 'D':
d++;
break;
case 'R':
r++;
break;
case 'L':
l++;
break;
default:
break;
}
}
if (xx == abs(r - l) && yy == abs(u - d))
{
cout << "Impossible" << endl;
return;
}
bool f = 1;
do
{
f = 1;
int x = 0, y = 0;
for (int i = 0; i < s.length(); i++)
{
switch (s[i])
{
case 'U':
y++;
break;
case 'D':
y--;
break;
case 'R':
x++;
break;
case 'L':
x--;
break;
default:
break;
}
if (x == xx && y == yy)
{
f = 0;
break;;
}
}
} while (!f && next_permutation(s.begin(), s.end()));
if (!f)
{
cout << "Impossible" << endl;
}
else
{
cout << s << endl;
}
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int T;
cin >> T;
while (T--)
{
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3540kb
input:
5 1 1 RURULLD 0 5 UUU 0 3 UUU 0 2 UUU 0 0 UUU
output:
UDLLRRU UUU Impossible Impossible Impossible
result:
ok 5 cases
Test #2:
score: -100
Time Limit Exceeded
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:
RUDUDR URU Impossible Impossible Impossible RRUUUDUUU RRDRLDR UD Impossible LDDLLLRR LDRURLDD Impossible DUDDLLRDU LL Impossible URDULUR Impossible Impossible Impossible LDLRLLDRRL Impossible RL Impossible Impossible Impossible Impossible Impossible LRURRLLRRU LLUDL Impossible UUDDDLU RURUDD Impossi...