結果

問題 No.2085 Directed Complete Graph
ユーザー kemunikukemuniku
提出日時 2024-10-23 05:59:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 95,044 KB
平均クエリ数 1216.06
最終ジャッジ日時 2024-10-23 05:59:20
合計ジャッジ時間 4,774 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

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))
print(*list(map(lambda x:P[x],now)))
0