結果
問題 | No.1477 Lamps on Graph |
ユーザー | c-yan |
提出日時 | 2021-04-16 23:00:29 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,567 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 82,312 KB |
実行使用メモリ | 284,392 KB |
最終ジャッジ日時 | 2024-07-03 03:30:42 |
合計ジャッジ時間 | 10,529 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
59,544 KB |
testcase_01 | AC | 39 ms
52,352 KB |
testcase_02 | AC | 38 ms
53,560 KB |
testcase_03 | AC | 38 ms
52,576 KB |
testcase_04 | AC | 37 ms
52,640 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 38 ms
52,572 KB |
testcase_08 | AC | 37 ms
53,896 KB |
testcase_09 | AC | 37 ms
53,568 KB |
testcase_10 | WA | - |
testcase_11 | AC | 34 ms
52,540 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
from sys import setrecursionlimit, stdin def find(parent, i): t = parent[i] if t < 0: return i t = find(parent, t) parent[i] = t return t def unite(parent, i, j): i = find(parent, i) j = find(parent, j) if i == j: return parent[j] += parent[i] parent[i] = j def bit_add(bit, i, x): i += 1 n = len(bit) while i <= n: bit[i - 1] += x i += i & -i def bit_sum(bit, i): result = 0 i += 1 while i > 0: result += bit[i - 1] i -= i & -i return result def query(bit, start, stop): if start == 0: return bit_sum(bit, stop - 1) else: return bit_sum(bit, stop - 1) - bit_sum(bit, start - 1) readline = stdin.readline setrecursionlimit(10 ** 6) N, M = map(int, readline().split()) A = list(map(int, readline().split())) a = sorted(set(A)) t = {} for i in range(len(a)): t[a[i]] = i for i in range(N): A[i] = t[A[i]] parent = [-1] * N for _ in range(M): u, v = map(lambda x: int(x) - 1, readline().split()) unite(parent, u, v) K = int(readline()) B = set(map(lambda x: int(x) - 1, readline().split())) t = {} for i in range(N): p = find(parent, i) t.setdefault(p, []) t[p].append((A[i], i)) for k in t: t[k] = sorted(t[k]) result = [] for k in t: bit = [0] * (N + 1) for a, i in t[k]: x = query(bit, 0, a) if i in B: x += 1 if x % 2 == 1: result.append(i + 1) bit_add(bit, a, 1) print(len(result)) print(*result, sep='\n')