結果

問題 No.2085 Directed Complete Graph
ユーザー kemunikukemuniku
提出日時 2024-10-23 06:00:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 624 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 95,084 KB
平均クエリ数 1226.06
最終ジャッジ日時 2024-10-23 06:00:05
合計ジャッジ時間 4,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,460 KB
testcase_01 AC 62 ms
72,040 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 106 ms
84,768 KB
testcase_06 AC 112 ms
83,140 KB
testcase_07 AC 173 ms
88,592 KB
testcase_08 AC 126 ms
85,808 KB
testcase_09 AC 146 ms
89,652 KB
testcase_10 AC 149 ms
88,808 KB
testcase_11 AC 151 ms
88,124 KB
testcase_12 AC 153 ms
89,968 KB
testcase_13 AC 154 ms
88,828 KB
testcase_14 AC 163 ms
88,844 KB
testcase_15 AC 62 ms
71,644 KB
testcase_16 AC 62 ms
71,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import shuffle
N = int(input())
P = list(range(1,N+1))
shuffle(P)
RP = [-1]*N
for i in range(N):
    RP[P[i]-1] = i

def ask(a,b):
    print("?",P[a],P[b])
    T = int(input())
    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:
        for j in range(1,len(now)-1):
            if ask(i,now[j]):
                now.insert(j,i)
                break
        else:
            now.insert(len(now)-1,i)

print("!")
print(len(now)-1)
print(*list(map(lambda x:P[x],now)))
0