結果

問題 No.1854 Limited Bubble Sort
ユーザー colognecologne
提出日時 2022-02-26 18:25:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,009 bytes
コンパイル時間 775 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-07-04 14:48:47
合計ジャッジ時間 17,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
10,880 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 561 ms
11,776 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 355 ms
11,392 KB
testcase_15 WA -
testcase_16 AC 1,444 ms
13,056 KB
testcase_17 AC 1,507 ms
13,056 KB
testcase_18 AC 1,590 ms
13,184 KB
testcase_19 AC 1,471 ms
12,928 KB
testcase_20 WA -
testcase_21 AC 366 ms
12,032 KB
testcase_22 AC 938 ms
13,696 KB
testcase_23 AC 440 ms
12,288 KB
testcase_24 AC 1,405 ms
14,976 KB
testcase_25 AC 34 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    T = int(input())
    for i in range(T):
        N = int(input())
        p = [0] + list(map(int, input().split())) + [N+1]

        m = [0 for i in range(N+2)]
        for i in range(1, N+2):
            m[i] = max(m[i-1], p[i])

        ans = []

        def swap(i):
            if i == p[i] or i+1 == p[i+1]:
                return False
            if i+1 == p[i] and max(m[i-1], p[i+1]) != i:
                return False
            if i == p[i+1] and m[i-1] != i-1:
                return False

            ans.append(i)
            p[i], p[i+1] = p[i+1], p[i]
            m[i] = max(m[i-1], p[i])
            m[i+1] = max(m[i], p[i+1])
            return True

        while True:
            for i in range(1, N):
                if p[i] > p[i+1] and swap(i):
                    break
            else:
                break

        if p == sorted(p):
            print(len(ans))
            print(*ans)
        else:
            print(-1)


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