結果

問題 No.2967 Nana's Plus Permutation Game
ユーザー 👑 rin204rin204
提出日時 2024-11-16 22:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 94,688 KB
平均クエリ数 4170.09
最終ジャッジ日時 2024-11-16 22:23:36
合計ジャッジ時間 30,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
68,840 KB
testcase_01 AC 303 ms
87,776 KB
testcase_02 AC 169 ms
76,896 KB
testcase_03 AC 211 ms
81,888 KB
testcase_04 AC 325 ms
92,928 KB
testcase_05 AC 275 ms
86,112 KB
testcase_06 AC 247 ms
85,088 KB
testcase_07 AC 351 ms
91,872 KB
testcase_08 AC 119 ms
69,088 KB
testcase_09 AC 324 ms
92,376 KB
testcase_10 AC 280 ms
86,120 KB
testcase_11 AC 120 ms
69,088 KB
testcase_12 AC 124 ms
69,480 KB
testcase_13 AC 267 ms
84,712 KB
testcase_14 AC 287 ms
87,144 KB
testcase_15 AC 248 ms
81,640 KB
testcase_16 AC 155 ms
71,784 KB
testcase_17 AC 327 ms
92,776 KB
testcase_18 AC 230 ms
82,688 KB
testcase_19 AC 130 ms
70,632 KB
testcase_20 AC 200 ms
79,848 KB
testcase_21 AC 468 ms
93,800 KB
testcase_22 AC 480 ms
93,800 KB
testcase_23 AC 407 ms
93,928 KB
testcase_24 AC 466 ms
93,800 KB
testcase_25 AC 442 ms
93,928 KB
testcase_26 AC 493 ms
94,056 KB
testcase_27 AC 388 ms
93,544 KB
testcase_28 AC 521 ms
93,416 KB
testcase_29 AC 482 ms
93,800 KB
testcase_30 AC 506 ms
93,416 KB
testcase_31 AC 427 ms
93,832 KB
testcase_32 AC 417 ms
94,056 KB
testcase_33 AC 443 ms
93,672 KB
testcase_34 AC 395 ms
93,928 KB
testcase_35 AC 478 ms
93,800 KB
testcase_36 AC 424 ms
93,800 KB
testcase_37 AC 505 ms
93,544 KB
testcase_38 AC 510 ms
93,672 KB
testcase_39 AC 480 ms
93,800 KB
testcase_40 AC 459 ms
93,928 KB
testcase_41 AC 632 ms
93,664 KB
testcase_42 AC 529 ms
94,048 KB
testcase_43 AC 586 ms
94,688 KB
testcase_44 AC 651 ms
93,536 KB
testcase_45 AC 631 ms
94,048 KB
testcase_46 AC 655 ms
93,536 KB
testcase_47 AC 663 ms
93,920 KB
testcase_48 AC 676 ms
93,664 KB
testcase_49 AC 592 ms
94,288 KB
testcase_50 AC 626 ms
94,048 KB
testcase_51 AC 579 ms
94,304 KB
testcase_52 AC 675 ms
93,408 KB
testcase_53 AC 541 ms
93,792 KB
testcase_54 AC 545 ms
94,432 KB
testcase_55 AC 526 ms
94,304 KB
testcase_56 AC 656 ms
93,792 KB
testcase_57 AC 656 ms
94,176 KB
testcase_58 AC 661 ms
93,280 KB
testcase_59 AC 675 ms
94,040 KB
testcase_60 AC 665 ms
93,792 KB
testcase_61 AC 105 ms
68,832 KB
testcase_62 AC 109 ms
68,576 KB
testcase_63 AC 102 ms
68,960 KB
testcase_64 AC 104 ms
68,704 KB
testcase_65 AC 104 ms
68,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

to = [-1] * n
for i in range(n):
    print(f"1 {i + 1} {i + 1}", flush=True)
    j = int(input())
    if j == -1:
        to[i] = j
    else:
        to[i] = j - 1

dist = [-1] * n


def dfs(x):
    if dist[x] != -1:
        return dist[x]
    if to[x] == -1:
        dist[x] = 0
        return 0

    dist[x] = dfs(to[x]) + 1
    return dist[x]


ma = -1
one = -1
for i in range(n):
    dfs(i)
    if ma < dist[i]:
        ma = dist[i]
        one = i

P = [0] * n
P[one] = 1
now = one

for i in range(2, n + 1):
    print(f"1 {one + 1} {now + 1}", flush=True)
    now = int(input()) - 1
    P[now] = i


print(2, " ".join(map(str, P)), flush=True)
0