結果

問題 No.1854 Limited Bubble Sort
ユーザー MitarushiMitarushi
提出日時 2021-07-06 20:17:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 83,888 KB
最終ジャッジ日時 2024-06-29 10:28:43
合計ジャッジ時間 3,827 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,108 KB
testcase_01 AC 73 ms
76,592 KB
testcase_02 AC 79 ms
76,672 KB
testcase_03 AC 64 ms
72,476 KB
testcase_04 AC 60 ms
72,588 KB
testcase_05 AC 70 ms
76,456 KB
testcase_06 AC 45 ms
64,128 KB
testcase_07 AC 58 ms
71,848 KB
testcase_08 AC 52 ms
67,808 KB
testcase_09 AC 53 ms
68,792 KB
testcase_10 AC 56 ms
69,944 KB
testcase_11 AC 78 ms
78,536 KB
testcase_12 AC 80 ms
77,740 KB
testcase_13 AC 81 ms
79,464 KB
testcase_14 AC 84 ms
76,872 KB
testcase_15 AC 84 ms
76,308 KB
testcase_16 AC 83 ms
80,856 KB
testcase_17 AC 80 ms
80,608 KB
testcase_18 AC 80 ms
80,924 KB
testcase_19 AC 80 ms
80,480 KB
testcase_20 AC 80 ms
80,480 KB
testcase_21 AC 77 ms
78,888 KB
testcase_22 AC 80 ms
82,140 KB
testcase_23 AC 79 ms
79,032 KB
testcase_24 AC 78 ms
83,888 KB
testcase_25 AC 45 ms
62,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def yesno(p):
    for idx, (_, i) in enumerate(p):
        if idx == i and sum(j < i for _, j in p[:idx]) != i:
            return False
    return True


def swap(p, i, ops, comp):
    if p[i][1] == i or p[i+1][1] == i+1:
        return
    if comp(p[i]) > comp(p[i+1]):
        p[i], p[i+1] = p[i+1], p[i]
        ops.append(i+1)


def sort(p, ops, comp):
    for _ in p:
        for i in range(len(p)-1):
            swap(p, i, ops, comp)


def solve():
    n = int(input())
    p = [(i-1 < idx, i-1) for idx, i in enumerate(map(int, input().split()))]

    if not yesno(p):
        print(-1)
        return

    ops = []
    sort(p, ops, lambda x: x)
    sort(p, ops, lambda x: x[1])
    print(len(ops))
    print(" ".join(map(str, ops)))


if __name__ == "__main__":
    t = int(input())
    for _ in range(t):
        solve()
0