結果

問題 No.1854 Limited Bubble Sort
ユーザー tamatotamato
提出日時 2022-02-25 23:03:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,505 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-07-03 18:02:23
合計ジャッジ時間 4,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,480 KB
testcase_01 AC 63 ms
67,968 KB
testcase_02 AC 64 ms
67,072 KB
testcase_03 AC 64 ms
68,352 KB
testcase_04 AC 61 ms
67,328 KB
testcase_05 AC 66 ms
67,072 KB
testcase_06 AC 53 ms
62,976 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 64 ms
67,200 KB
testcase_11 AC 82 ms
79,232 KB
testcase_12 AC 83 ms
78,208 KB
testcase_13 AC 87 ms
81,792 KB
testcase_14 AC 80 ms
77,624 KB
testcase_15 AC 74 ms
74,880 KB
testcase_16 AC 87 ms
82,436 KB
testcase_17 AC 90 ms
82,304 KB
testcase_18 AC 88 ms
82,944 KB
testcase_19 AC 85 ms
81,960 KB
testcase_20 AC 87 ms
82,944 KB
testcase_21 AC 81 ms
80,640 KB
testcase_22 AC 92 ms
86,400 KB
testcase_23 AC 87 ms
81,408 KB
testcase_24 AC 98 ms
89,344 KB
testcase_25 AC 43 ms
54,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        N = int(input())
        P = [0] + list(map(int, input().split()))

        P_ori = P[:]

        ans = []
        ok = 1
        for p in range(1, N + 1):
            for i in range(1, N+1):
                if P[i] == p:
                    ii = i
                    break
            if ii == p:
                continue

            for i in range(ii - 1, p - 1, -1):
                j = i
                while P[j] == j + 1:
                    j -= 1
                    if j == p - 1:
                        break
                if j != p - 1 and j != i:
                    for jj in range(j, i):
                        ans.append(jj)
                        #if P[jj] == jj or P[jj + 1] == jj + 1:
                        #    ok = 0
                        P[jj], P[jj + 1] = P[jj + 1], P[jj]
                ans.append(i)
                if P[i] == i or P[i + 1] == i + 1:
                    ok = -1
                P[i], P[i + 1] = P[i + 1], P[i]

        if ok == 1:
            print(len(ans))
            print(*ans)
            assert len(ans) <= N ** 2
        else:
            print(-1)

        if ok == 1:
            for i in ans:
                assert P_ori[i] != i and P_ori[i + 1] != i + 1
                P_ori[i], P_ori[i + 1] = P_ori[i + 1], P_ori[i]
            assert P_ori == list(range(N + 1))


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