結果

問題 No.282 おもりと天秤(2)
ユーザー しらっ亭しらっ亭
提出日時 2015-09-24 01:05:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,035 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,896 KB
平均クエリ数 219.83
最終ジャッジ日時 2024-07-16 06:23:04
合計ジャッジ時間 21,527 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
27,864 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 47 ms
27,608 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,906 ms
29,256 KB
testcase_23 AC 47 ms
27,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cmp_to_key
import sys


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

    a = list(range(N))
    m = [[0] * N for _ in range(N)]

    def parse(ans, qs):
        for a, q in zip(ans, qs):
            l, r = q
            if a == '<':
                m[l][r] = -1
                m[r][l] = 1
            else:
                m[l][r] = 1
                m[r][l] = -1

    for step in range(1, N):
        used = [0] * N
        qs = []
        qa = ['?']
        for i in range(N):
            j = (i + step) % N
            if used[i] == 0 and used[j] == 0:
                qs.append((i, j))
                qa.append(str(i + 1))
                qa.append(str(j + 1))
                used[i] = used[j] = 1

        print(' '.join(qa) + ' 0' * (N * 2 - len(qs) * 2))
        sys.stdout.flush()
        ans = input().split()
        parse(ans, qs)

    @cmp_to_key
    def cmp(l, r):
        return m[l][r]

    a.sort(key=cmp)
    print('! ' + ' '.join(map(lambda i: str(i + 1), a)))


if __name__ == '__main__':
    solve()
0