結果

問題 No.5001 排他的論理和でランニング
ユーザー uafr_csuafr_cs
提出日時 2018-03-16 23:47:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,445 ms / 1,500 ms
コード長 1,783 bytes
コンパイル時間 2,245 ms
実行使用メモリ 56,152 KB
スコア 52,423,971
最終ジャッジ日時 2020-03-12 19:39:57
ジャッジサーバーID
(参考情報)
judge7 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,439 ms
52,580 KB
testcase_01 AC 1,038 ms
56,128 KB
testcase_02 AC 1,107 ms
52,600 KB
testcase_03 AC 1,241 ms
54,412 KB
testcase_04 AC 1,437 ms
52,376 KB
testcase_05 AC 1,158 ms
52,276 KB
testcase_06 AC 1,222 ms
55,748 KB
testcase_07 AC 1,286 ms
55,988 KB
testcase_08 AC 1,358 ms
52,360 KB
testcase_09 AC 993 ms
52,556 KB
testcase_10 AC 1,105 ms
53,988 KB
testcase_11 AC 1,183 ms
53,936 KB
testcase_12 AC 1,101 ms
52,244 KB
testcase_13 AC 1,379 ms
52,644 KB
testcase_14 AC 1,297 ms
52,700 KB
testcase_15 AC 1,200 ms
52,392 KB
testcase_16 AC 1,110 ms
52,296 KB
testcase_17 AC 1,116 ms
52,416 KB
testcase_18 AC 1,265 ms
56,152 KB
testcase_19 AC 1,174 ms
52,416 KB
testcase_20 AC 1,158 ms
52,392 KB
testcase_21 AC 1,117 ms
55,968 KB
testcase_22 AC 1,028 ms
54,188 KB
testcase_23 AC 1,043 ms
50,264 KB
testcase_24 AC 1,092 ms
52,440 KB
testcase_25 AC 1,288 ms
52,648 KB
testcase_26 AC 1,238 ms
54,248 KB
testcase_27 AC 1,131 ms
55,836 KB
testcase_28 AC 1,352 ms
52,240 KB
testcase_29 AC 1,399 ms
56,068 KB
testcase_30 AC 1,087 ms
52,288 KB
testcase_31 AC 1,297 ms
52,212 KB
testcase_32 AC 1,146 ms
54,256 KB
testcase_33 AC 1,417 ms
54,144 KB
testcase_34 AC 1,445 ms
54,212 KB
testcase_35 AC 1,320 ms
52,384 KB
testcase_36 AC 1,409 ms
54,176 KB
testcase_37 AC 1,299 ms
52,504 KB
testcase_38 AC 1,153 ms
52,288 KB
testcase_39 AC 1,142 ms
52,464 KB
testcase_40 AC 1,234 ms
56,060 KB
testcase_41 AC 1,092 ms
52,304 KB
testcase_42 AC 1,189 ms
52,364 KB
testcase_43 AC 1,260 ms
52,348 KB
testcase_44 AC 1,355 ms
54,244 KB
testcase_45 AC 1,385 ms
55,848 KB
testcase_46 AC 1,319 ms
52,212 KB
testcase_47 AC 1,196 ms
52,244 KB
testcase_48 AC 1,142 ms
52,292 KB
testcase_49 AC 1,320 ms
52,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
		
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int M = sc.nextInt();
		
		int[] array = new int[N];
		for(int i = 0; i < N; i++){
			array[i] = sc.nextInt();
		}
		Arrays.sort(array);
		
		boolean[] used = new boolean[N];
		
		int count = 0;
		long xor = 0;
		for(int bit = 31; bit >= 0 && count < M; bit--){
			if(((1 << bit) & xor) != 0){ continue; }
			
			int max_index = -1;
			long max_value = -1;
			
			for(int i = 0; i < N; i++){
				if(used[i]){ continue; }
				if(((1 << bit) & array[i]) == 0){ continue; }
				
				if(max_value < array[i]){
					max_index = i;
					max_value = array[i];
				}
			}
			
			if(max_index >= 0){
				used[max_index] = true;
				xor ^= max_value;
				count++;
			}
		}
		
		//System.out.println(xor + " " + count + " : " + Arrays.toString(used));
		for(int i = 0; i < N && count < M; i++){
			if(used[i]){ continue; }
			
			used[i] = true;
			xor ^= array[i];
			count++;
		}
		//System.out.println(xor + " " + count + " : " + Arrays.toString(used));
		
		for(int x = 0; x < 10000000; x++){
			final int fst = (int)(Math.random() * N);
			final int snd = (int)(Math.random() * N);
			if(used[fst] && used[snd]){ continue; }
			if(!used[fst] && !used[snd]){ continue; }
			
			final long next_xor = xor ^ array[fst] ^ array[snd];
			if(next_xor > xor){
				xor = next_xor;
				used[fst] = !used[fst];
				used[snd] = !used[snd];
			}
		}
		
		boolean first = true;
		for(int i = 0; i < N; i++){	
			if(!used[i]){ continue; }
			
			System.out.print((first ? "" : " ") + (array[i]));
			first = false;
		}
		System.out.println();
	}
}
0