結果

問題 No.1854 Limited Bubble Sort
ユーザー chineristACchineristAC
提出日時 2022-02-26 00:17:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 1,822 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 94,792 KB
最終ジャッジ日時 2024-07-03 19:22:41
合計ジャッジ時間 3,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,300 KB
testcase_01 AC 85 ms
80,088 KB
testcase_02 AC 83 ms
78,292 KB
testcase_03 AC 80 ms
78,792 KB
testcase_04 AC 81 ms
77,980 KB
testcase_05 AC 78 ms
77,652 KB
testcase_06 AC 63 ms
70,504 KB
testcase_07 AC 74 ms
76,912 KB
testcase_08 AC 73 ms
76,640 KB
testcase_09 AC 76 ms
75,520 KB
testcase_10 AC 75 ms
75,644 KB
testcase_11 AC 98 ms
84,836 KB
testcase_12 AC 104 ms
83,824 KB
testcase_13 AC 102 ms
87,480 KB
testcase_14 AC 105 ms
83,444 KB
testcase_15 AC 101 ms
82,600 KB
testcase_16 AC 109 ms
86,596 KB
testcase_17 AC 101 ms
87,752 KB
testcase_18 AC 106 ms
86,488 KB
testcase_19 AC 104 ms
87,924 KB
testcase_20 AC 104 ms
88,408 KB
testcase_21 AC 103 ms
86,724 KB
testcase_22 AC 115 ms
92,272 KB
testcase_23 AC 103 ms
86,864 KB
testcase_24 AC 114 ms
94,792 KB
testcase_25 AC 71 ms
69,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    return (g1[n] * g2[r] % mod) * g2[n-r] % mod

mod = 998244353
N = 2*10**5
g1 = [1]*(N+1)
g2 = [1]*(N+1)
inverse = [1]*(N+1)

for i in range( 2, N + 1 ):
    g1[i]=( ( g1[i-1] * i ) % mod )
    inverse[i]=( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2[i]=( (g2[i-1] * inverse[i]) % mod )
inverse[0]=0


import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import e, log,gcd

input = lambda :sys.stdin.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

for _ in range(int(input())):
    N = int(input())
    P = li()
    #P = [i+1 for i in range(N)]
    #while any(P[i]==i+1 for i in range(N)):
        #random.shuffle(P)
    res = []
    flag = True
    for i in range(N):
        pos = P.index(i+1)
        for j in range(i,pos):
            if P[j]==j+1:
                flag = False
                break
        if not flag:
            break

        while pos!=i:
            s = -1
            for j in range(i,pos)[::-1]:
                if P[j]!=j+2:
                    s = j
                    break
            if s==-1:
                for j in range(i,pos)[::-1]:
                    res.append(j+1)
                    P[j],P[j+1] = P[j+1],P[j]
                    #print(P)
                pos = i
            else:
                for j in range(s,pos-1):
                    res.append(j+1)
                    P[j],P[j+1] = P[j+1],P[j]
                    #print(P)
                res.append(pos)
                P[pos-1],P[pos] = P[pos],P[pos-1]
                #print(P)
                pos = pos-1
    
    #print(P)
    
    if flag:
        print(len(res))
        print(*res)
    else:
        print(-1)
0