結果

問題 No.556 仁義なきサルたち
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-27 00:07:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,883 ms / 2,000 ms
コード長 1,242 bytes
コンパイル時間 3,604 ms
コンパイル使用メモリ 78,572 KB
実行使用メモリ 70,912 KB
最終ジャッジ日時 2024-06-30 23:01:25
合計ジャッジ時間 16,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,140 KB
testcase_01 AC 140 ms
53,952 KB
testcase_02 AC 132 ms
54,276 KB
testcase_03 AC 135 ms
54,008 KB
testcase_04 AC 138 ms
53,992 KB
testcase_05 AC 172 ms
54,392 KB
testcase_06 AC 162 ms
54,512 KB
testcase_07 AC 187 ms
54,208 KB
testcase_08 AC 198 ms
54,436 KB
testcase_09 AC 252 ms
56,572 KB
testcase_10 AC 273 ms
56,952 KB
testcase_11 AC 283 ms
58,712 KB
testcase_12 AC 287 ms
58,932 KB
testcase_13 AC 321 ms
56,520 KB
testcase_14 AC 502 ms
60,464 KB
testcase_15 AC 653 ms
60,544 KB
testcase_16 AC 768 ms
59,716 KB
testcase_17 AC 1,229 ms
70,244 KB
testcase_18 AC 1,883 ms
70,856 KB
testcase_19 AC 1,652 ms
70,912 KB
testcase_20 AC 1,412 ms
70,752 KB
testcase_21 AC 1,412 ms
70,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No556{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		int m = sc.nextInt();
		ArrayList<Integer> monkeys = new ArrayList<Integer>(n);
		for(int i = 0; i < n; i++){
			monkeys.add(i+1);
		}
		for(int i = 0; i < m; i++){
			int a = sc.nextInt();
			int b = sc.nextInt();

			int boss_a = monkeys.get(a-1);
			int boss_b = monkeys.get(b-1);
			int num_teama = 0, num_teamb = 0;
			for(int j = 0; j < n; j++){
				if(monkeys.get(j) == boss_a) num_teama++;
				if(monkeys.get(j) == boss_b) num_teamb++;
			}

			if(num_teama > num_teamb){
				for(int j = 0; j < n; j++){
					if(monkeys.get(j) == boss_b) monkeys.set(j, boss_a);
				}
			}else if(num_teamb > num_teama){
				for(int j = 0; j < n; j++){
					if(monkeys.get(j) == boss_a) monkeys.set(j, boss_b);
				}
			}else if(boss_a < boss_b){
				for(int j = 0; j < n; j++){
					if(monkeys.get(j) == boss_b) monkeys.set(j, boss_a);
				}
			}else if(boss_b < boss_a){
				for(int j = 0; j < n; j++){
					if(monkeys.get(j) == boss_a) monkeys.set(j, boss_b);
				}
			}
			// System.out.println(monkeys.toString());
		}

		for(int i = 0; i < n; i++){
			System.out.println(monkeys.get(i));
		}
	}
}
0