結果

問題 No.601 Midpoint Erase
コンテスト
ユーザー daku9640
提出日時 2017-12-02 04:21:28
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
MLE  
実行時間 -
コード長 842 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 351 ms
コンパイル使用メモリ 20,828 KB
実行使用メモリ 433,360 KB
最終ジャッジ日時 2026-05-22 06:20:15
合計ジャッジ時間 4,644 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 3
other AC * 3 MLE * 1 -- * 19
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
from collections import defaultdict
from itertools import combinations
readline = sys.stdin.readline
N = int(input())
MAP = defaultdict(set)
SET = set()
LIST = []
for i, j in combinations((tuple(map(int, readline().split())) for _ in [0] * N), 2):
    x = (i[0] - j[0])
    y = (i[1] - j[1])
    if (x % 2 == 0 and y % 2 == 0 and
        x not in (-1, 0, 1) and y not in (-1, 0, 1)):
        MAP[i].add(j)
        MAP[j].add(i)
        LIST.append({i, j})
cnt = 0
for fi, se in LIST:
    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
print("Bob" if cnt % 2 == 0 else "Alice")
0