QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#242432#7516. Robot ExperimentyyzAC ✓96ms3576kbC++141.8kb2023-11-07 13:37:172023-11-07 13:37:17

Judging History

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

  • [2023-11-07 13:37:17]
  • 评测
  • 测评结果:AC
  • 用时:96ms
  • 内存:3576kb
  • [2023-11-07 13:37:17]
  • 提交

answer

#include <bits/stdc++.h>
#define V vector
#define Vi vector<int>
#define sz(a) ((int)a.size())
#define fi first
#define se second
#define Int pair<int, int>
#define Inf ((int)1e9)
#define pb push_back
#define ins insert
#define For(i, x, y) for (int i = (x); i <= (y); i++)
#define Rep(i, x, y) for (int i = (x); i >= (y); i--)
#define seg int p, int l, int r
#define lid p << 1, l, mid
#define all(a) a.begin(), a.end()
#define rid p << 1 | 1, mid + 1, r
#define mid ((l + r) / 2)
#define Ceil(x, y) ((x + y - 1) / y)
#define IO(x) freopen(#x ".in", "r", stdin), freopen(#x ".out", "w", stdout);
using namespace std;
int dx[] = {-1, 1, 0, 0};
int dy[] = {0, 0, 1, -1};
int main() {
#ifndef ONLINE_JUDGE
  IO(1);
#endif
  ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
  int n;
  cin >> n;
  string st;
  cin >> st;
  Vi a(n);
  For(i, 0, n - 1) {
    if (st[i] == 'L') a[i] = 0;
    if (st[i] == 'R') a[i] = 1;
    if (st[i] == 'U') a[i] = 2;
    if (st[i] == 'D') a[i] = 3;
  }
  V<Int> res;
  V<Vi> vis(2 * n + 5, Vi(2 * n + 5));
  For(i, 0, (1 << n) - 1) {
    int x = n, y = n, ff = 0;
    vis[x][y] = -1;
    V<Int> vec;
    For(j, 0, n - 1) {
      int xx = x + dx[a[j]], yy = y + dy[a[j]];
      if ((i >> j) & 1) {
        if (vis[xx][yy] == 1) {
          ff = 1;
          break;
        }
        x = xx, y = yy;
        vis[x][y] = -1;
        vec.pb({x, y});
      } else {
        if (vis[xx][yy] == -1) {
          ff = 1;
          break;
        }
        vis[xx][yy] = 1;
        vec.pb({xx, yy});
      }
    }
    for (auto i : vec) vis[i.fi][i.se] = 0;
    if (!ff) res.pb({x - n, y - n});
  }
  sort(all(res));
  res.erase(unique(all(res)), res.end());
  cout << sz(res) << '\n';
  for (auto i : res) cout << i.fi << ' ' << i.se << '\n';
}

这程序好像有点Bug,我给组数据试试?

詳細信息

Test #1:

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

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: 3424kb

input:

4
LRUD

output:

4
0 -1
0 0
1 -1
1 0

result:

ok 5 lines

Test #3:

score: 0
Accepted
time: 53ms
memory: 3492kb

input:

20
LLLRLRLRLLLRLLRLRLLR

output:

8
-6 0
-5 0
-4 0
-3 0
-2 0
-1 0
0 0
1 0

result:

ok 9 lines

Test #4:

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

input:

1
D

output:

2
0 -1
0 0

result:

ok 3 lines

Test #5:

score: 0
Accepted
time: 54ms
memory: 3468kb

input:

20
UUUUUUUUUUUUUUUUUUUU

output:

21
0 0
0 1
0 2
0 3
0 4
0 5
0 6
0 7
0 8
0 9
0 10
0 11
0 12
0 13
0 14
0 15
0 16
0 17
0 18
0 19
0 20

result:

ok 22 lines

Test #6:

score: 0
Accepted
time: 67ms
memory: 3408kb

input:

20
LRUDDULRUDRLLRDURLUD

output:

22
-2 0
-2 1
-1 -2
-1 -1
-1 0
-1 1
-1 2
0 -2
0 -1
0 0
0 1
0 2
1 -2
1 -1
1 0
1 1
1 2
2 -2
2 -1
2 0
2 1
2 2

result:

ok 23 lines

Test #7:

score: 0
Accepted
time: 52ms
memory: 3412kb

input:

20
UUDUDUUDUDUDUDUDLLRL

output:

12
-2 -1
-2 0
-2 1
-2 2
-1 -1
-1 0
-1 1
-1 2
0 -1
0 0
0 1
0 2

result:

ok 13 lines

Test #8:

score: 0
Accepted
time: 56ms
memory: 3412kb

input:

20
DUUDDUDUUDUDDUUDUDDU

output:

3
0 -1
0 0
0 1

result:

ok 4 lines

Test #9:

score: 0
Accepted
time: 80ms
memory: 3480kb

input:

20
RUDLUULDRURLDURLDURR

output:

29
-3 3
-3 4
-2 2
-2 3
-2 4
-1 1
-1 2
-1 3
-1 4
0 -1
0 0
0 1
0 2
0 3
0 4
1 -1
1 0
1 1
1 2
1 3
2 -1
2 0
2 1
2 2
2 3
3 -1
3 0
3 1
3 2

result:

ok 30 lines

Test #10:

score: 0
Accepted
time: 96ms
memory: 3576kb

input:

20
DLDLDLDLLLDLLDLDLDLR

output:

108
-10 -8
-10 -7
-10 -6
-10 -5
-10 -4
-10 -3
-10 -2
-10 -1
-10 0
-9 -8
-9 -7
-9 -6
-9 -5
-9 -4
-9 -3
-9 -2
-9 -1
-9 0
-8 -8
-8 -7
-8 -6
-8 -5
-8 -4
-8 -3
-8 -2
-8 -1
-8 0
-7 -8
-7 -7
-7 -6
-7 -5
-7 -4
-7 -3
-7 -2
-7 -1
-7 0
-6 -8
-6 -7
-6 -6
-6 -5
-6 -4
-6 -3
-6 -2
-6 -1
-6 0
-5 -8
-5 -7
-5 -6
-5 -...

result:

ok 109 lines

Extra Test:

score: 0
Extra Test Passed