結果

問題 No.2967 Nana's Plus Permutation Game
ユーザー ねしんねしん
提出日時 2024-10-21 22:05:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 804 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 95,804 KB
平均クエリ数 4170.09
最終ジャッジ日時 2024-10-26 00:54:14
合計ジャッジ時間 35,931 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
71,528 KB
testcase_01 AC 329 ms
92,716 KB
testcase_02 AC 187 ms
82,564 KB
testcase_03 AC 239 ms
88,176 KB
testcase_04 AC 362 ms
93,752 KB
testcase_05 AC 301 ms
93,496 KB
testcase_06 AC 272 ms
91,076 KB
testcase_07 AC 382 ms
93,540 KB
testcase_08 AC 132 ms
71,904 KB
testcase_09 AC 358 ms
93,144 KB
testcase_10 AC 306 ms
93,136 KB
testcase_11 AC 134 ms
72,460 KB
testcase_12 AC 172 ms
77,828 KB
testcase_13 AC 292 ms
90,416 KB
testcase_14 AC 333 ms
93,632 KB
testcase_15 AC 229 ms
87,656 KB
testcase_16 AC 169 ms
82,316 KB
testcase_17 AC 362 ms
93,548 KB
testcase_18 AC 246 ms
88,540 KB
testcase_19 AC 144 ms
78,308 KB
testcase_20 AC 221 ms
86,520 KB
testcase_21 AC 522 ms
95,056 KB
testcase_22 AC 514 ms
95,228 KB
testcase_23 AC 485 ms
95,052 KB
testcase_24 AC 521 ms
95,088 KB
testcase_25 AC 511 ms
95,436 KB
testcase_26 AC 517 ms
95,108 KB
testcase_27 AC 424 ms
94,628 KB
testcase_28 AC 564 ms
95,024 KB
testcase_29 AC 541 ms
95,276 KB
testcase_30 AC 571 ms
94,540 KB
testcase_31 AC 423 ms
95,020 KB
testcase_32 AC 470 ms
95,024 KB
testcase_33 AC 452 ms
95,100 KB
testcase_34 AC 418 ms
95,064 KB
testcase_35 AC 550 ms
94,824 KB
testcase_36 AC 437 ms
94,520 KB
testcase_37 AC 586 ms
94,860 KB
testcase_38 AC 544 ms
95,184 KB
testcase_39 AC 520 ms
94,952 KB
testcase_40 AC 499 ms
95,044 KB
testcase_41 AC 705 ms
94,608 KB
testcase_42 AC 597 ms
95,024 KB
testcase_43 AC 639 ms
94,952 KB
testcase_44 AC 743 ms
95,316 KB
testcase_45 AC 685 ms
95,144 KB
testcase_46 AC 774 ms
95,420 KB
testcase_47 AC 745 ms
95,332 KB
testcase_48 AC 732 ms
95,064 KB
testcase_49 AC 622 ms
94,940 KB
testcase_50 AC 705 ms
94,832 KB
testcase_51 AC 694 ms
94,816 KB
testcase_52 AC 726 ms
95,192 KB
testcase_53 AC 640 ms
94,996 KB
testcase_54 AC 608 ms
95,020 KB
testcase_55 AC 627 ms
95,028 KB
testcase_56 AC 761 ms
95,804 KB
testcase_57 AC 784 ms
94,960 KB
testcase_58 AC 782 ms
95,072 KB
testcase_59 AC 757 ms
94,920 KB
testcase_60 AC 804 ms
95,144 KB
testcase_61 AC 110 ms
70,740 KB
testcase_62 AC 110 ms
70,344 KB
testcase_63 AC 109 ms
70,856 KB
testcase_64 AC 111 ms
71,192 KB
testcase_65 AC 112 ms
70,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict,deque
N=int(input())
path=defaultdict(list)
for i in range(1,N+1):
  print(1,i,i,flush=True)
  k=int(input())
  if k==-1:
  	k=0
  path[k].append(i)
  path[i].append(k)

Q=deque()
now=0
Q.append(0)
check=set()
check.add(0)

while len(Q)>0:
	p=Q.popleft()
	now=p
	for j in path[p]:
		if j not in check:
			check.add(j)
			Q.append(j)
			
ans=[0]*(N+1)
ans[now]=1
one=now
for i in range(1,N):
	print(1,one,now,flush=True)
	k=int(input())
	ans[k],now=i+1,k
ans[0]=2
print(*ans,flush=True)
0