結果

問題 No.1854 Limited Bubble Sort
ユーザー 👑 colognecologne
提出日時 2022-02-26 18:12:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,124 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 10,880 KB
実行使用メモリ 8,692 KB
最終ジャッジ日時 2023-09-17 20:23:50
合計ジャッジ時間 5,711 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
8,200 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
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 AC 20 ms
8,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

        ok = True
        ans = []

        def swap(i):
            assert i != p[i]
            assert i+1 != p[i+1]
            ans.append(i)
            p[i], p[i+1] = p[i+1], p[i]

        for i in range(len(fixed_idx)-1):
            f, t = fixed_idx[i], fixed_idx[i+1]
            if sorted(p[f+1:t]) != list(range(f+1, t)):
                ok = False
                break

            for i in range(f+1, t):
                for j in range(i, t):
                    if p[j] == i:
                        i_idx = j
                if i_idx == i:
                    continue

                for j in range(i_idx, i, -1):
                    if p[j-1] == j and j != i+1:
                        swap(j-2)
                    swap(j-1)

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


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