結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
70,576 KB
testcase_01 AC 68 ms
72,044 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 136 ms
89,072 KB
testcase_06 AC 128 ms
87,880 KB
testcase_07 AC 198 ms
93,792 KB
testcase_08 AC 172 ms
93,656 KB
testcase_09 AC 195 ms
92,992 KB
testcase_10 AC 201 ms
93,564 KB
testcase_11 AC 230 ms
93,184 KB
testcase_12 AC 199 ms
93,200 KB
testcase_13 AC 203 ms
93,520 KB
testcase_14 AC 204 ms
93,340 KB
testcase_15 AC 63 ms
71,412 KB
testcase_16 AC 65 ms
71,732 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+1)//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