結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 632 ms
52,356 KB
testcase_01 AC 344 ms
56,244 KB
testcase_02 AC 376 ms
52,280 KB
testcase_03 AC 477 ms
52,320 KB
testcase_04 AC 661 ms
52,480 KB
testcase_05 AC 421 ms
54,160 KB
testcase_06 AC 490 ms
52,368 KB
testcase_07 AC 525 ms
52,216 KB
testcase_08 AC 671 ms
52,488 KB
testcase_09 AC 228 ms
50,984 KB
testcase_10 AC 403 ms
52,368 KB
testcase_11 AC 449 ms
52,252 KB
testcase_12 AC 381 ms
52,372 KB
testcase_13 AC 653 ms
55,888 KB
testcase_14 AC 510 ms
54,256 KB
testcase_15 AC 416 ms
52,384 KB
testcase_16 AC 349 ms
52,320 KB
testcase_17 AC 376 ms
52,372 KB
testcase_18 AC 502 ms
55,988 KB
testcase_19 AC 433 ms
54,168 KB
testcase_20 AC 371 ms
52,228 KB
testcase_21 AC 387 ms
55,736 KB
testcase_22 AC 305 ms
52,368 KB
testcase_23 AC 284 ms
51,796 KB
testcase_24 AC 399 ms
54,232 KB
testcase_25 AC 548 ms
52,284 KB
testcase_26 AC 505 ms
52,372 KB
testcase_27 AC 431 ms
52,608 KB
testcase_28 AC 538 ms
52,276 KB
testcase_29 AC 562 ms
52,220 KB
testcase_30 AC 334 ms
52,600 KB
testcase_31 AC 526 ms
52,368 KB
testcase_32 AC 385 ms
52,224 KB
testcase_33 AC 670 ms
54,112 KB
testcase_34 AC 675 ms
55,904 KB
testcase_35 AC 535 ms
56,276 KB
testcase_36 AC 630 ms
52,360 KB
testcase_37 AC 534 ms
52,384 KB
testcase_38 AC 380 ms
52,580 KB
testcase_39 AC 430 ms
52,380 KB
testcase_40 AC 468 ms
52,512 KB
testcase_41 AC 326 ms
54,316 KB
testcase_42 AC 453 ms
52,284 KB
testcase_43 AC 468 ms
54,008 KB
testcase_44 AC 581 ms
52,364 KB
testcase_45 AC 611 ms
52,292 KB
testcase_46 AC 566 ms
54,360 KB
testcase_47 AC 419 ms
52,236 KB
testcase_48 AC 380 ms
52,496 KB
testcase_49 AC 615 ms
52,616 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));
		
		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