結果

問題 No.1604 Swap Sort:ONE
ユーザー tentententen
提出日時 2022-09-29 11:44:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,546 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 52,320 KB
最終ジャッジ日時 2024-06-02 02:01:30
合計ジャッジ時間 5,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,400 KB
testcase_01 AC 48 ms
50,344 KB
testcase_02 AC 46 ms
50,404 KB
testcase_03 AC 47 ms
49,920 KB
testcase_04 AC 46 ms
50,340 KB
testcase_05 AC 65 ms
51,144 KB
testcase_06 AC 94 ms
51,608 KB
testcase_07 AC 87 ms
51,792 KB
testcase_08 AC 83 ms
51,424 KB
testcase_09 AC 85 ms
51,612 KB
testcase_10 AC 88 ms
51,608 KB
testcase_11 AC 87 ms
51,784 KB
testcase_12 AC 91 ms
51,628 KB
testcase_13 AC 86 ms
51,516 KB
testcase_14 AC 87 ms
51,764 KB
testcase_15 AC 91 ms
51,800 KB
testcase_16 AC 86 ms
51,760 KB
testcase_17 AC 81 ms
51,956 KB
testcase_18 AC 90 ms
51,728 KB
testcase_19 AC 87 ms
51,424 KB
testcase_20 AC 92 ms
52,320 KB
testcase_21 AC 90 ms
51,500 KB
testcase_22 AC 86 ms
51,400 KB
testcase_23 AC 72 ms
50,904 KB
testcase_24 AC 54 ms
50,328 KB
testcase_25 AC 85 ms
51,680 KB
testcase_26 AC 81 ms
51,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] place = new int[n + 1];
        int[] values = new int[n + 1];
        for (int i = 1; i <= n; i++) {
            values[i] = sc.nextInt();
            place[values[i]] = i;
        }
        int count = 0;
        for (int i = 1; i <= n; i++) {
            while (values[i] > i) {
                int current = values[i];
                place[current] = place[current - 1];
                values[place[current - 1]] = current;
                values[i] = current - 1;
                place[current - 1] = i;
                count++;
            }
        }
        System.out.println(count);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0