結果

問題 No.2085 Directed Complete Graph
ユーザー googol_S0googol_S0
提出日時 2022-09-27 20:17:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 87,044 KB
実行使用メモリ 174,748 KB
平均クエリ数 2546.47
最終ジャッジ日時 2023-08-24 04:03:16
合計ジャッジ時間 7,358 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 RE -
testcase_03 WA -
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 #

import sys
from random import *
N=int(input())
P=list(range(N))
shuffle(P)
def query(a,b):
  print('?',P[a]+1,P[b]+1)
  sys.stdout.flush()
  return int(input())

def answer(C):
  print('!')
  print(len(C))
  print(*[P[C[i]]+1 for i in range(len(C))])
  sys.stdout.flush()
  exit()

def f(X):
  if len(X)<=1:
    return X
  v=X[0]
  a=[]
  b=[]
  for i in range(1,len(X)):
    if query(v,X[i]):
      b.append(X[i])
    else:
      a.append(X[i])
  p,q=f(a),f(b)
  return p+[v]+q

answer(f(list(range(N))))
0