QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#248601#7516. Robot Experimentcciafrino#WA 569ms3796kbC++141.5kb2023-11-11 20:19:142023-11-11 20:19:14

Judging History

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

  • [2023-11-11 20:19:14]
  • 评测
  • 测评结果:WA
  • 用时:569ms
  • 内存:3796kb
  • [2023-11-11 20:19:14]
  • 提交

answer

#include<bits/stdc++.h>

int main() {
    using namespace std;
    cin.tie(nullptr)->sync_with_stdio(false);
    int N; cin >> N; string S; cin >> S;

    auto get_nxt = [](char c, array<int, 2> cur) -> array<int, 2> {
        if (c == 'U') {
            return {cur[0], cur[1] + 1};
        }
        if (c == 'R') {
            return {cur[0] + 1, cur[1]};
        }
        if (c == 'D') {
            return {cur[0], cur[1] - 1};
        }
        if (c == 'L') {
            return {cur[0] - 1, cur[1]};
        }
        return {0, 0};
    };

    vector<array<int, 2>> path; path.reserve(1 << N);    
    for (int mask = 0; mask < (1 << N); ++mask) {
        map<array<int, 2>, bool> vis;

        array<int, 2> cur = {0, 0};
        bool ok = true;
        vis[cur] = 1;
        for (int x = 0; x < N; ++x) {
            auto nxt = get_nxt(S[x], cur);
            if (mask & (1 << x)) {
                if (vis.count(nxt) > 0) {
                    if (vis[nxt] == -1) ok = false;
                }
                cur = nxt;
                vis[nxt] = 1;
            } else {
                if (vis.count(nxt) > 0) {
                    if (vis[nxt] == 1) ok = false;
                }
                vis[nxt] = -1;
            }
        }
        if (ok) {
            path.push_back(cur);
        }
    }
    sort(path.begin(), path.end());
    path.erase(unique(path.begin(), path.end()), path.end());
    cout << int(path.size()) << '\n';
    for (auto [a, b] : path) {
        cout << a << ' ' << b << '\n';
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3640kb

input:

2
RU

output:

4
0 0
0 1
1 0
1 1

result:

ok 5 lines

Test #2:

score: 0
Accepted
time: 0ms
memory: 3796kb

input:

4
LRUD

output:

4
0 -1
0 0
1 -1
1 0

result:

ok 5 lines

Test #3:

score: -100
Wrong Answer
time: 569ms
memory: 3564kb

input:

20
LLLRLRLRLLLRLLRLRLLR

output:

5
-6 0
-5 0
-4 0
-3 0
-2 0

result:

wrong answer 1st lines differ - expected: '8', found: '5'