結果

問題 No.1854 Limited Bubble Sort
ユーザー MitarushiMitarushi
提出日時 2022-02-24 23:25:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,135 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,944 KB
実行使用メモリ 83,840 KB
最終ジャッジ日時 2024-07-02 14:15:01
合計ジャッジ時間 3,341 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 76 ms
76,572 KB
testcase_02 AC 79 ms
76,160 KB
testcase_03 AC 63 ms
72,448 KB
testcase_04 AC 59 ms
71,296 KB
testcase_05 AC 71 ms
76,544 KB
testcase_06 AC 45 ms
63,616 KB
testcase_07 AC 58 ms
70,784 KB
testcase_08 AC 51 ms
67,584 KB
testcase_09 AC 56 ms
68,736 KB
testcase_10 AC 60 ms
70,400 KB
testcase_11 AC 85 ms
78,716 KB
testcase_12 AC 87 ms
78,008 KB
testcase_13 AC 86 ms
79,836 KB
testcase_14 AC 97 ms
77,328 KB
testcase_15 AC 90 ms
76,596 KB
testcase_16 AC 88 ms
81,392 KB
testcase_17 AC 89 ms
81,348 KB
testcase_18 AC 84 ms
81,152 KB
testcase_19 AC 83 ms
80,256 KB
testcase_20 AC 88 ms
80,456 KB
testcase_21 AC 88 ms
78,872 KB
testcase_22 AC 89 ms
82,116 KB
testcase_23 AC 86 ms
78,976 KB
testcase_24 AC 86 ms
83,840 KB
testcase_25 AC 54 ms
62,336 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)


sum_n = 0
def solve():
    global sum_n
    n = int(input())
    sum_n += n
    assert 2 <= n <= 500
    pp = list(map(int, input().split()))
    assert len(pp) == n
    assert list(sorted(pp)) == list(range(1, n + 1))
    p = [(i-1 < idx, i-1) for idx, i in enumerate(pp)]

    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())
    assert 1 <= t <= 250

    for _ in range(t):
        solve()
    
    assert sum_n <= 500

    try:
        x = input()
        assert x == ""
    except EOFError:
        pass
0