結果

問題 No.2085 Directed Complete Graph
ユーザー kemunikukemuniku
提出日時 2024-10-23 06:10:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 812 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 95,432 KB
平均クエリ数 1563.88
最終ジャッジ日時 2024-10-23 06:11:03
合計ジャッジ時間 5,570 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
70,980 KB
testcase_01 AC 66 ms
71,936 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 131 ms
86,728 KB
testcase_06 AC 144 ms
89,460 KB
testcase_07 AC 215 ms
93,708 KB
testcase_08 AC 164 ms
91,056 KB
testcase_09 AC 201 ms
93,116 KB
testcase_10 AC 249 ms
93,664 KB
testcase_11 AC 210 ms
93,228 KB
testcase_12 AC 207 ms
93,344 KB
testcase_13 AC 209 ms
93,724 KB
testcase_14 AC 216 ms
93,584 KB
testcase_15 AC 64 ms
71,216 KB
testcase_16 AC 66 ms
71,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import shuffle
N = int(input())
P = list(range(1,N+1))
shuffle(P) 

paths = set()
def ask(a,b):
    if (a,b) in paths:
        return True
    elif (b,a) in paths:
        return False
    print("?",P[a],P[b])
    T = int(input())
    if T == 1:
        paths.add((a,b))
    else:
        paths.add((b,a))
    return T == 1


if ask(0,1):
    now = [0,1]
else:
    now = [1,0]

for i in range(2,N):
    if ask(i,now[0]):
        now.insert(0,i)
    elif ask(now[-1],i):
        now.append(i)
    else:
        ok = 0
        ng = len(now)-1
        while (abs(ok - ng) > 1):
            mid = (ok + ng) // 2
            if ask(now[mid],i):
                ok = mid
            else:
                ng = mid
        now.insert(ok+1,i)
print("!")
print(len(now)-1)
print(*list(map(lambda x:P[x],now)))
0