結果

問題 No.5001 排他的論理和でランニング
ユーザー uafr_csuafr_cs
提出日時 2018-03-16 23:13:33
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,562 bytes
コンパイル時間 2,325 ms
実行使用メモリ 56,228 KB
スコア 47,119,121
最終ジャッジ日時 2020-03-12 19:34:50
ジャッジサーバーID
(参考情報)
judge9 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 959 ms
52,680 KB
testcase_02 AC 1,155 ms
52,512 KB
testcase_03 AC 1,287 ms
54,432 KB
testcase_04 TLE -
testcase_05 AC 1,179 ms
52,188 KB
testcase_06 AC 1,153 ms
52,588 KB
testcase_07 AC 1,260 ms
52,252 KB
testcase_08 AC 1,149 ms
54,164 KB
testcase_09 AC 998 ms
50,944 KB
testcase_10 AC 1,014 ms
52,404 KB
testcase_11 AC 1,106 ms
56,228 KB
testcase_12 AC 1,010 ms
52,372 KB
testcase_13 AC 1,262 ms
52,300 KB
testcase_14 AC 1,285 ms
52,316 KB
testcase_15 AC 1,264 ms
52,220 KB
testcase_16 AC 1,172 ms
52,616 KB
testcase_17 AC 1,074 ms
52,460 KB
testcase_18 AC 1,235 ms
54,416 KB
testcase_19 AC 1,190 ms
54,320 KB
testcase_20 AC 1,207 ms
52,468 KB
testcase_21 AC 1,108 ms
52,240 KB
testcase_22 AC 971 ms
52,284 KB
testcase_23 AC 1,060 ms
50,024 KB
testcase_24 AC 933 ms
52,396 KB
testcase_25 AC 1,154 ms
55,860 KB
testcase_26 AC 1,078 ms
52,376 KB
testcase_27 AC 977 ms
54,696 KB
testcase_28 AC 1,405 ms
54,280 KB
testcase_29 AC 1,382 ms
54,232 KB
testcase_30 AC 1,166 ms
52,388 KB
testcase_31 AC 1,333 ms
52,592 KB
testcase_32 AC 1,200 ms
52,324 KB
testcase_33 AC 1,377 ms
52,228 KB
testcase_34 AC 1,484 ms
0 KB
testcase_35 AC 1,388 ms
52,348 KB
testcase_36 AC 1,496 ms
0 KB
testcase_37 AC 1,317 ms
53,992 KB
testcase_38 AC 1,186 ms
52,296 KB
testcase_39 AC 1,077 ms
54,216 KB
testcase_40 AC 1,264 ms
54,364 KB
testcase_41 AC 1,138 ms
52,260 KB
testcase_42 AC 1,188 ms
54,404 KB
testcase_43 AC 1,277 ms
54,212 KB
testcase_44 AC 1,430 ms
54,532 KB
testcase_45 AC 1,458 ms
52,332 KB
testcase_46 AC 1,215 ms
52,300 KB
testcase_47 AC 1,283 ms
54,172 KB
testcase_48 AC 1,204 ms
54,280 KB
testcase_49 AC 1,198 ms
53,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	
	public static long random = 2463534242L;
	public static long random() {
		random ^= (random << 21);
		random ^= (random >>> 35);
		random ^= (random << 4);
		return random;
	}
		
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		final int M = sc.nextInt();
		
		long[] array = new long[N];
		for(int i = 0; i < N; i++){
			array[i] = sc.nextLong();
		}
		Arrays.sort(array);
		
		boolean[] used = new boolean[N];
		long max = 0;
		for(int i = 0; i < M; i++){
			used[(N - 1) - i] = true;
			max ^= array[(N - 1) - i];
		}
		
		double startTemp = 100;
		double endTemp = 10;
		
		final int LIMIT = 10000000;
		for(int x = 0; x < LIMIT; x++){
			final int fst = (N + (int)(random() % N)) % N;
			final int snd = (N + (int)(random() % N)) % N;
			if(used[fst] && used[snd]){ continue; }
			if(!used[fst] && !used[snd]){ continue; }
			
			final long next_max = max ^ array[fst] ^ array[snd];
			
			//double temp = startTemp + (endTemp - startTemp) * x / LIMIT;
			boolean force_next = (100 * (LIMIT - x)) > (LIMIT * (Math.abs(random()) % 100));
			
			if(next_max > max || force_next){
				max = next_max;
				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