結果

問題 No.326 あみだますたー
ユーザー crazybbb3crazybbb3
提出日時 2016-11-28 22:06:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 2,594 bytes
コンパイル時間 2,163 ms
コンパイル使用メモリ 86,876 KB
実行使用メモリ 46,500 KB
最終ジャッジ日時 2024-11-27 12:46:49
合計ジャッジ時間 7,031 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,944 KB
testcase_01 AC 77 ms
38,272 KB
testcase_02 AC 94 ms
40,460 KB
testcase_03 AC 194 ms
45,472 KB
testcase_04 AC 111 ms
39,232 KB
testcase_05 AC 46 ms
36,672 KB
testcase_06 AC 164 ms
44,764 KB
testcase_07 AC 71 ms
38,144 KB
testcase_08 AC 136 ms
40,476 KB
testcase_09 AC 201 ms
42,688 KB
testcase_10 AC 198 ms
46,500 KB
testcase_11 AC 79 ms
38,212 KB
testcase_12 AC 158 ms
41,448 KB
testcase_13 AC 180 ms
44,916 KB
testcase_14 AC 100 ms
39,244 KB
testcase_15 AC 124 ms
41,332 KB
testcase_16 AC 161 ms
44,304 KB
testcase_17 AC 133 ms
41,008 KB
testcase_18 AC 130 ms
39,420 KB
testcase_19 AC 142 ms
41,452 KB
testcase_20 AC 78 ms
38,028 KB
testcase_21 AC 76 ms
38,132 KB
testcase_22 AC 161 ms
41,804 KB
testcase_23 AC 153 ms
40,192 KB
testcase_24 AC 194 ms
45,652 KB
testcase_25 AC 189 ms
45,480 KB
testcase_26 AC 103 ms
40,464 KB
testcase_27 AC 183 ms
45,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.StringTokenizer;

public class Main {

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    void solve() throws IOException {
        int n = ni();
        int k = ni();
        int[] x = new int[k];
        int[] y = new int[k];
        for (int i = 0; i < k; i++) {
            x[i] = ni() - 1;
            y[i] = ni() - 1;
        }
        int[] a = new int[n];
        for (int i = 0; i < n; i++) {
            a[i] = ni() - 1;
        }

        for (int i = 0; i < k; i++) {
            int tmp = a[x[i]];
            a[x[i]] = a[y[i]];
            a[y[i]] = tmp;
        }

        ArrayList<Integer> list = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n - i; j++) {
                if (j + 1 < n && a[j] > a[j + 1]) {
                    list.add(j + 1);
                    int tmp = a[j];
                    a[j] = a[j + 1];
                    a[j + 1] = tmp;
                }
            }
        }

        out.println(list.size());
        for (int i = 0; i < list.size(); i++) {
            out.println(list.get(i) + " " + (list.get(i) + 1));
        }
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0