結果

問題 No.2496 LCM between Permutations
ユーザー naut3naut3
提出日時 2023-10-06 23:06:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,587 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 94,772 KB
平均クエリ数 953.69
最終ジャッジ日時 2024-07-26 16:55:29
合計ジャッジ時間 5,433 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
72,192 KB
testcase_01 AC 63 ms
71,032 KB
testcase_02 AC 58 ms
72,776 KB
testcase_03 AC 58 ms
71,848 KB
testcase_04 AC 59 ms
72,596 KB
testcase_05 AC 60 ms
71,068 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 60 ms
71,764 KB
testcase_11 RE -
testcase_12 AC 61 ms
71,896 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 76 ms
73,376 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 240 ms
94,388 KB
testcase_27 RE -
testcase_28 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm, gcd
import random


def main():
    N = int(input())

    A = [-1 for _ in range(N)]
    B = [-1 for _ in range(N)]

    b_lcm_azero = []

    r = random.randint(0, N - 1)

    for i in range(N):
        print("? {} {}".format(r + 1, i + 1), flush=True)
        x = int(input())
        b_lcm_azero.append(x)

    a_r = min(b_lcm_azero)
    A[r] = a_r

    b_one_cand = []

    for i in range(N):
        if b_lcm_azero[i] == a_r:
            b_one_cand.append(i)

    cand = [i for i in range(N)]
    random.shuffle(cand)

    for i in range(N):
        r = cand[i]

        if A[r] != -1:
            continue

        values = []
        for c in b_one_cand:
            print("? {} {}".format(r + 1, c + 1), flush=True)
            x = int(input())
            values.append(x)

        b_one_cand_nxt = []

        m = min(values)
        A[r] = m

        for j in range(len(b_one_cand)):
            if values[j] == m:
                b_one_cand_nxt.append(b_one_cand[j])

        b_one_cand = b_one_cand_nxt

        if len(b_one_cand) == 1:
            break

    j = b_one_cand[0]

    B[j] = 1

    for i in range(N):
        if A[i] != -1:
            continue

        print("? {} {}".format(i + 1, j + 1), flush=True)
        x = int(input())

        A[i] = x

    j = -1

    for i in range(N):
        if A[i] == 1:
            j = i

    for i in range(N):
        if B[i] != -1:
            continue

        print("? {} {}".format(j + 1, i + 1), flush=True)
        x = int(input())
        B[i] = x

    print("!", *A, *B, flush=True)


main()
0