結果

問題 No.2085 Directed Complete Graph
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-05-11 23:47:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 93,896 KB
平均クエリ数 2458.59
最終ジャッジ日時 2024-05-05 19:03:45
合計ジャッジ時間 6,229 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,664 KB
testcase_01 AC 66 ms
70,936 KB
testcase_02 AC 287 ms
93,416 KB
testcase_03 AC 277 ms
92,976 KB
testcase_04 AC 293 ms
93,640 KB
testcase_05 AC 193 ms
93,348 KB
testcase_06 AC 199 ms
93,636 KB
testcase_07 AC 282 ms
93,492 KB
testcase_08 AC 235 ms
93,668 KB
testcase_09 AC 274 ms
93,300 KB
testcase_10 AC 293 ms
93,424 KB
testcase_11 AC 283 ms
93,736 KB
testcase_12 AC 285 ms
93,384 KB
testcase_13 AC 311 ms
93,896 KB
testcase_14 AC 311 ms
93,768 KB
testcase_15 AC 71 ms
70,880 KB
testcase_16 AC 67 ms
70,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/2085

これは典型!
マージソートだけど、回数足りるのか…?

"""

import sys
from sys import stdin
from collections import deque
import heapq

N = int(stdin.readline())

q = []

for i in range(N):
    heapq.heappush(q, [1,[i+1]])

while len(q) > 1:

    _,A = heapq.heappop(q)
    _,B = heapq.heappop(q)

    A = deque(A)
    B = deque(B)

    C = []

    while A and B:

        print ("?",A[0],B[0],flush=True)

        cat = int(stdin.readline())

        if cat == 1:
            C.append(A.popleft())
        else:
            C.append(B.popleft())

    while A:
        C.append(A.popleft())

    while B:
        C.append(B.popleft())

    heapq.heappush(q, [len(C),C])

print ("!")
print (len(q[0][1])-1)
print (*q[0][1])
        
0