結果

問題 No.326 あみだますたー
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-03 16:52:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 1,883 bytes
コンパイル時間 3,982 ms
コンパイル使用メモリ 84,072 KB
実行使用メモリ 49,088 KB
最終ジャッジ日時 2024-11-08 00:20:34
合計ジャッジ時間 13,229 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,132 KB
testcase_01 AC 159 ms
42,416 KB
testcase_02 AC 227 ms
43,036 KB
testcase_03 AC 401 ms
49,068 KB
testcase_04 AC 243 ms
43,152 KB
testcase_05 AC 137 ms
41,264 KB
testcase_06 AC 313 ms
48,496 KB
testcase_07 AC 210 ms
44,412 KB
testcase_08 AC 298 ms
43,820 KB
testcase_09 AC 438 ms
48,764 KB
testcase_10 AC 431 ms
48,652 KB
testcase_11 AC 168 ms
42,860 KB
testcase_12 AC 353 ms
47,816 KB
testcase_13 AC 341 ms
48,388 KB
testcase_14 AC 272 ms
44,980 KB
testcase_15 AC 283 ms
47,844 KB
testcase_16 AC 272 ms
46,936 KB
testcase_17 AC 308 ms
45,232 KB
testcase_18 AC 299 ms
46,380 KB
testcase_19 AC 313 ms
48,488 KB
testcase_20 AC 154 ms
42,252 KB
testcase_21 AC 156 ms
42,604 KB
testcase_22 AC 332 ms
48,144 KB
testcase_23 AC 343 ms
47,836 KB
testcase_24 AC 385 ms
48,564 KB
testcase_25 AC 385 ms
49,088 KB
testcase_26 AC 248 ms
46,456 KB
testcase_27 AC 343 ms
48,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise53{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int vert = sc.nextInt();
    int hori = sc.nextInt();

    int[][] lines = new int[hori][2];

    for (int a = 0; a < hori; a++){
      lines[a][0] = sc.nextInt();
      lines[a][1] = sc.nextInt();
    }

    int[] answer = new int[vert];

    for (int b = 0; b < vert; b++){
      answer[b] = sc.nextInt();
    }

    LinkedList<int[]> newLines1 = new LinkedList<int[]>();
    LinkedList<int[]> newLines2 = new LinkedList<int[]>();

    int[] process = new int[vert];

    for (int i = 0; i < vert; i++){
      int currentNum = i + 1;
      for (int j = 0; j < hori; j++){
        if (currentNum == lines[j][0]){
          currentNum++;
        }else if(currentNum == lines[j][1]){
          currentNum--;
        }
      }
      process[i] = currentNum;
    }
    getNewHori(vert, process, newLines1, true);

    getNewHori(vert, answer, newLines2, false);



    System.out.println(newLines1.size() + newLines2.size());
    showLines(newLines1);
    showLines(newLines2);

  }

  private static void getNewHori(int vert, int[] array, LinkedList<int[]> arrayList, boolean flag){
    for (int k = 0; k < vert - 1; k++){
      for (int i = vert - 1; i > k; i--){
        if (array[i] < array[i - 1]){
          int w = array[i];
          array[i] = array[i - 1];
          array[i - 1] = w;
          int[] newLine = new int[2];
          newLine[0] = i;
          newLine[1] = i + 1;
          if (flag){
            arrayList.push(newLine);
          }else{
            arrayList.add(newLine);
          }
        }
      }
    }
  }

  private static void showLines(LinkedList<int[]> arrayList){
    for (int i = 0; i < arrayList.size(); i++){
      int[] line = arrayList.get(i);
      System.out.println(line[0] + " " + line[1]);
    }
  }
}
0