結果
問題 | No.1707 Simple Range Reverse Problem |
ユーザー | koba-e964 |
提出日時 | 2021-10-15 21:40:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,367 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 81,972 KB |
実行使用メモリ | 63,344 KB |
最終ジャッジ日時 | 2024-09-17 17:19:51 |
合計ジャッジ時間 | 1,755 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
53,072 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 44 ms
59,996 KB |
testcase_15 | AC | 47 ms
62,124 KB |
testcase_16 | AC | 44 ms
60,152 KB |
testcase_17 | AC | 43 ms
60,012 KB |
testcase_18 | AC | 44 ms
60,332 KB |
ソースコード
#!/usr/bin/env python3 import sys readline = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) t = int(readline()) def calc(a): n = len(a) // 2 f = [[] for _ in range(n + 1)] for i in range(2 * n): f[a[i]].append(i) for i in range(1, n + 1): if len(f[i]) != 2: return False if a[0] != 1 or a[2 * n - 1] != n: return False if n == 1: return True u = [0] * (n + 1) for i in range(2 * n - 1): if a[i] == a[i + 1]: return False c = a[i] d = a[i + 1] if c > d: c, d = d, c if c == 1 and d == n: u[0] += 1 else: if c + 1 != d: return False u[c] += 1 if u[0] != 1: return False for i in range(1, n): if u[i] != 2: return False if all(a[i] == i % n + 1 for i in range(2 * n)): return True x = f[1][1] b = [0] * (2 * n) y = x // 2 for i in range(y + 1): b[i] = i + 1 for i in range(y): b[y + 1 + i] = y - i for i in range(n - y): b[2 * y + 1] = n - i for i in range(n - y - 1): b[2 * y + 1 + n - y + i] = y + 1 + i return a == b for _ in range(t): n = int(readline()) a = list(map(int, readline().split())) print('Yes' if calc(a) else 'No')