結果
| 問題 |
No.601 Midpoint Erase
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-12-02 03:59:17 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 1,031 bytes |
| コンパイル時間 | 247 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 298,864 KB |
| 最終ジャッジ日時 | 2024-11-28 02:36:40 |
| 合計ジャッジ時間 | 32,122 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 WA * 1 TLE * 2 MLE * 8 |
ソースコード
import sys
from collections import defaultdict
from itertools import combinations
readline = sys.stdin.readline
f = lambda x, y: (True if (x[0] - y[0]) % 2 == 0 and (x[0] - y[0]) not in (-1, 0, 1) and
(x[1] - y[1]) % 2 == 0 and (x[1] - y[1]) not in (-1, 0, 1) else False)
N = int(input())
li = tuple(tuple(map(int, readline().split())) for _ in range(N))
MAP = defaultdict(set)
LIST = []
for x, y in ((i, j) for i, j in combinations(li, 2) if f(i, j)):
MAP[x].add(y)
MAP[y].add(x)
LIST.append({x, y})
cnt = 0
dp = [LIST[0]] if LIST else []
while dp:
fi, se = dp.pop()
if MAP[fi] and MAP[se]:
for z in MAP[fi]:
MAP[z].remove(fi)
if not MAP[z]:
del MAP[z]
for z in MAP[se]:
MAP[z].remove(se)
if not MAP[z]:
del MAP[z]
del MAP[fi]
del MAP[se]
cnt += 1
if MAP:
t = tuple(MAP)[0]
dp.append((t, min(MAP[t])))
print("Bob" if cnt % 2 == 0 else "Alice")