結果

問題 No.2085 Directed Complete Graph
ユーザー lif4635lif4635
提出日時 2024-10-22 22:24:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 679 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 96,316 KB
平均クエリ数 1578.88
最終ジャッジ日時 2024-10-22 22:24:17
合計ジャッジ時間 5,301 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,544 KB
testcase_01 AC 63 ms
70,944 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 132 ms
88,072 KB
testcase_06 AC 136 ms
88,196 KB
testcase_07 AC 193 ms
93,640 KB
testcase_08 AC 170 ms
93,404 KB
testcase_09 AC 197 ms
93,424 KB
testcase_10 AC 197 ms
93,852 KB
testcase_11 AC 209 ms
93,408 KB
testcase_12 AC 198 ms
93,684 KB
testcase_13 AC 206 ms
93,200 KB
testcase_14 AC 197 ms
93,644 KB
testcase_15 AC 62 ms
70,920 KB
testcase_16 AC 62 ms
71,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def II() -> int : return int(input())
from random import shuffle

n = II()

k = [*range(1,n+1)]
shuffle(k)

now = [k[0]]

for i in k[1:]:
    print("?",now[-1],i)
    f = II()
    assert f != -1
    if f:
        now = now + [i]
        continue
    
    print("?",i,now[0])
    f = II()
    assert f != -1
    if f:
        now = [i] + now
        continue
    
    #二分探索しましょう
    l = 0
    r = len(now)-1
    while r-l > 1:
        mid = (l+r)//2
        print("?",now[mid],i)
        f = II()
        assert f != -1
        if f:
            l = mid
        else:
            r = mid
    
    now = now[:r] + [i] + now[r:]

print("!")
print(n-1)
print(*now)
0