QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#281240#6422. Evil CoordinatejrjyyWA 13ms4316kbC++201.7kb2023-12-09 23:47:122023-12-09 23:47:13

Judging History

你现在查看的是最新测评结果

  • [2023-12-09 23:47:13]
  • 评测
  • 测评结果:WA
  • 用时:13ms
  • 内存:4316kb
  • [2023-12-09 23:47:12]
  • 提交

answer

#include <bits/stdc++.h>

using i64 = long long;

const std::map<char, int> ID = {{'U', 0}, {'D', 1}, {'L', 2}, {'R', 3}};
const int dx[] = {0, 0, -1, 1};
const int dy[] = {1, -1, 0, 0};

void solve() {
    int tx, ty;
    std::cin >> tx >> ty;

    std::string s;
    std::cin >> s;

    if (tx == 0 && ty == 0) {
        std::cout << "Impossible\n";
        return;
    }

    auto get = [&](char x, char y) {
        int cx = int(std::count(s.begin(), s.end(), x));
        int cy = int(std::count(s.begin(), s.end(), y));
        if (cx < cy) {
            std::swap(x, y);
            std::swap(cx, cy);
        }
        std::string a, b;
        for (int i = 0; i < cy; ++i) {
            a += x;
            a += y;
            b += y;
            b += x;
        }
        a += std::string(cx - cy, x);
        b += std::string(cx - cy, x);
        return std::make_pair(a, b);
    };
    auto [fa, fb] = get('U', 'D');
    auto [ga, gb] = get('L', 'R');

    auto check = [&](const std::string &s) {
        int x = 0, y = 0;
        for (auto c : s) {
            x += dx[ID.at(c)];
            y += dy[ID.at(c)];
            if (x == tx && y == ty) {
                return false;
            }
        }
        std::cout << s << "\n";
        return true;
    };
    for (auto f : {fa, fb}) {
        for (auto g : {ga, gb}) {
            if (check(f + g) || check(g + f)) {
                return;
            }
        }
    }
    std::cout << "Impossible\n";
}

int main() {
    std::cin.tie(nullptr)->sync_with_stdio(false);

    int t;
    std::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: 3868kb

input:

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

output:

UDULRLR
UUU
Impossible
Impossible
Impossible

result:

ok 5 cases

Test #2:

score: -100
Wrong Answer
time: 13ms
memory: 4316kb

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:

UDUDRR
UUR
Impossible
Impossible
Impossible
UDUUUUURR
DDRLRRR
UD
Impossible
DDLRLRLL
DUDDLRLR
Impossible
DUDUDDLRL
LL
Impossible
UDUURLR
Impossible
Impossible
Impossible
LRLRLRLLDD
Impossible
LR
Impossible
Impossible
Impossible
Impossible
Impossible
RLRLRLRRUU
UDLLL
Impossible
UDUDUDL
UDUDRR
Impossi...

result:

wrong answer case 279, participant does not find an answer but the jury does