結果

問題 No.1854 Limited Bubble Sort
ユーザー colognecologne
提出日時 2022-02-28 14:44:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 1,429 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 16,896 KB
最終ジャッジ日時 2024-07-06 17:04:59
合計ジャッジ時間 3,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 36 ms
10,880 KB
testcase_02 AC 35 ms
10,880 KB
testcase_03 AC 35 ms
10,880 KB
testcase_04 AC 35 ms
10,880 KB
testcase_05 AC 35 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 33 ms
10,880 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 69 ms
12,032 KB
testcase_12 AC 58 ms
11,776 KB
testcase_13 AC 97 ms
13,184 KB
testcase_14 AC 61 ms
11,520 KB
testcase_15 AC 52 ms
11,392 KB
testcase_16 AC 103 ms
13,440 KB
testcase_17 AC 102 ms
13,696 KB
testcase_18 AC 107 ms
13,824 KB
testcase_19 AC 103 ms
13,696 KB
testcase_20 AC 109 ms
13,824 KB
testcase_21 AC 84 ms
12,544 KB
testcase_22 AC 137 ms
15,232 KB
testcase_23 AC 92 ms
12,672 KB
testcase_24 AC 173 ms
16,896 KB
testcase_25 AC 34 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

            for i in range(f, t+1):
                for j in range(f, t+1):
                    if p[j] == i:
                        i_idx = j
                        break
                if i_idx == i:
                    continue
                for j in range(i_idx, i, -1):
                    assert p[j] == i
                    k = j-1
                    while p[k] == k+1:
                        k -= 1
                    if p[k] == k:
                        for s in range(j-1, k, -1):
                            swap(s)
                            break
                    else:
                        for s in range(k, j):
                            swap(s)

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


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