結果
| 問題 |
No.326 あみだますたー
|
| コンテスト | |
| ユーザー |
kou6839
|
| 提出日時 | 2015-12-19 21:53:18 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,047 bytes |
| コンパイル時間 | 2,609 ms |
| コンパイル使用メモリ | 87,724 KB |
| 実行使用メモリ | 61,172 KB |
| 最終ジャッジ日時 | 2024-09-17 10:54:38 |
| 合計ジャッジ時間 | 11,822 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | AC * 3 WA * 23 |
ソースコード
import java.util.*;
public class Main {
static long gcd(long a,long b){
return b == 0 ? a : gcd(b, a%b);
}
static long lcm(long a, long b){
return a*b/gcd(a, b);
}
static int[] dx = {1,0,-1,0};
static int[] dy = {0,1,0,-1};
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int m = sc.nextInt();
int[] moto = new int[n+1];
for(int i=1;i<=n;i++) moto[i] = i;
for(int i=0;i<m;i++){
int a = sc.nextInt();
int b = sc.nextInt();
int tmp = moto[a];
moto[a] = moto[b];
moto[b] = tmp;
}
int[] goal = new int[n+1];
for(int i=1;i<=n;i++) goal[i] = sc.nextInt();
int ans = 0;
StringBuilder sb = new StringBuilder();
for(int i=1;i<n;i++){
if(moto[i]==goal[i]){
continue;
}
int b = 0;
for(int j=1;j<=n;j++)if(moto[j]==goal[i]) b = j;
for(int j=b;j>i;j--){
int tmp = moto[j];
moto[j]=moto[j-1];
moto[j-1]=tmp;
ans++;
sb.append(j+" "+(j-1)+"\n");
}
}
System.out.println(ans);
System.out.println(sb);
}
}
kou6839