結果

問題 No.1604 Swap Sort:ONE
ユーザー merlinmerlin
提出日時 2021-07-16 21:46:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,145 bytes
コンパイル時間 2,477 ms
コンパイル使用メモリ 78,672 KB
実行使用メモリ 46,456 KB
最終ジャッジ日時 2024-07-06 08:48:36
合計ジャッジ時間 6,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
37,076 KB
testcase_01 AC 40 ms
36,576 KB
testcase_02 AC 41 ms
37,144 KB
testcase_03 AC 39 ms
36,984 KB
testcase_04 AC 39 ms
36,576 KB
testcase_05 AC 49 ms
37,236 KB
testcase_06 AC 167 ms
44,216 KB
testcase_07 AC 165 ms
44,836 KB
testcase_08 AC 171 ms
44,912 KB
testcase_09 AC 207 ms
45,376 KB
testcase_10 AC 184 ms
45,068 KB
testcase_11 AC 182 ms
46,456 KB
testcase_12 AC 195 ms
44,964 KB
testcase_13 AC 199 ms
46,248 KB
testcase_14 AC 145 ms
44,528 KB
testcase_15 AC 160 ms
45,044 KB
testcase_16 AC 189 ms
45,080 KB
testcase_17 AC 140 ms
44,608 KB
testcase_18 AC 141 ms
44,512 KB
testcase_19 AC 171 ms
45,028 KB
testcase_20 AC 151 ms
44,232 KB
testcase_21 AC 177 ms
44,708 KB
testcase_22 AC 166 ms
45,188 KB
testcase_23 AC 108 ms
43,472 KB
testcase_24 AC 85 ms
41,064 KB
testcase_25 AC 196 ms
45,240 KB
testcase_26 AC 186 ms
45,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        String s[]=bu.readLine().split(" ");
        int i,a[]=new int[n],c[]=new int[n];
        for(i=0;i<n;i++)
        {
            a[i]=Integer.parseInt(s[i])-1;
            c[a[i]]=i;
        }

        int ans=0;
        for(i=0;i<n;i++)
        if(a[i]!=i)
        {
            ArrayList<Integer> el=new ArrayList<>();
            int x=i;
            while(a[x]!=i)
            {
                //System.out.print(x+" ");
                el.add(x);
                x=c[a[x]-1];
            }
            el.add(x);
            //System.out.println(i+" "+el);
            for(x=el.size()-2;x>=0;x--)
            {
                int u=el.get(x),v=el.get(x+1);
                a[u]=a[u]^a[v]^(a[v]=a[u]);
                c[a[u]]=u;
                c[a[v]]=v;
                ans++;
            }
        }
        System.out.print(ans);
    }
}
0