結果

問題 No.1998 Manhattan Restaurant
ユーザー MasKoaTSMasKoaTS
提出日時 2024-12-01 21:10:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 940 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 607,644 KB
最終ジャッジ日時 2024-12-01 21:11:24
合計ジャッジ時間 70,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,000 KB
testcase_01 MLE -
testcase_02 AC 30 ms
16,000 KB
testcase_03 MLE -
testcase_04 AC 31 ms
15,872 KB
testcase_05 MLE -
testcase_06 AC 770 ms
44,672 KB
testcase_07 MLE -
testcase_08 AC 1,372 ms
53,632 KB
testcase_09 MLE -
testcase_10 AC 624 ms
38,656 KB
testcase_11 MLE -
testcase_12 AC 54 ms
17,280 KB
testcase_13 MLE -
testcase_14 AC 777 ms
52,480 KB
testcase_15 MLE -
testcase_16 TLE -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 TLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 TLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
P = [list(map(int, input().split())) for _ in [0] * N]

graph = [[] for _ in [0] * N]
for i in range(N - 1):
    for j in range(i + 1, N):
        d = abs(P[i][0] - P[j][0]) + abs(P[i][1] - P[j][1])
        graph[i].append((j, d))
        graph[j].append((i, d))

def func(d):
    c = [0] * N
    for v in range(N):
        if(c[v]):
            continue
        c[v] = 1
        que = [v]
        while(que):
            now = que.pop()
            for nv, nd in graph[now]:
                if(nd <= d):
                    continue
                if(c[nv] == 0):
                    c[nv] = -c[now]
                    que.append(nv)
                elif(c[nv] == c[now]):
                    return False
    return True

ok = 4 * 10 ** 9 + 1
ng = 0
while(abs(ok - ng) > 1):
    d = (ok + ng) // 2
    if(func(d)):
        ok = d
    else:
        ng = d
ans = ok // 2
print(ans)
0