結果

問題 No.5001 排他的論理和でランニング
ユーザー uafr_csuafr_cs
提出日時 2018-03-16 23:15:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,102 ms / 1,500 ms
コード長 1,561 bytes
コンパイル時間 2,338 ms
実行使用メモリ 41,392 KB
スコア 51,122,240
最終ジャッジ日時 2020-03-12 19:34:22
ジャッジサーバーID
(参考情報)
judge8 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,065 ms
40,920 KB
testcase_01 AC 652 ms
40,232 KB
testcase_02 AC 766 ms
40,132 KB
testcase_03 AC 880 ms
40,444 KB
testcase_04 AC 1,102 ms
41,392 KB
testcase_05 AC 811 ms
40,292 KB
testcase_06 AC 838 ms
40,760 KB
testcase_07 AC 888 ms
40,636 KB
testcase_08 AC 910 ms
41,240 KB
testcase_09 AC 642 ms
37,240 KB
testcase_10 AC 702 ms
40,432 KB
testcase_11 AC 778 ms
40,440 KB
testcase_12 AC 692 ms
40,208 KB
testcase_13 AC 957 ms
40,992 KB
testcase_14 AC 900 ms
40,616 KB
testcase_15 AC 838 ms
40,684 KB
testcase_16 AC 757 ms
40,180 KB
testcase_17 AC 723 ms
40,288 KB
testcase_18 AC 865 ms
40,680 KB
testcase_19 AC 808 ms
40,468 KB
testcase_20 AC 796 ms
40,304 KB
testcase_21 AC 746 ms
40,224 KB
testcase_22 AC 652 ms
40,284 KB
testcase_23 AC 693 ms
39,928 KB
testcase_24 AC 660 ms
40,564 KB
testcase_25 AC 843 ms
40,772 KB
testcase_26 AC 794 ms
40,656 KB
testcase_27 AC 700 ms
40,600 KB
testcase_28 AC 970 ms
40,636 KB
testcase_29 AC 984 ms
40,976 KB
testcase_30 AC 748 ms
40,296 KB
testcase_31 AC 935 ms
40,748 KB
testcase_32 AC 787 ms
40,480 KB
testcase_33 AC 1,019 ms
41,168 KB
testcase_34 AC 1,077 ms
41,128 KB
testcase_35 AC 961 ms
40,812 KB
testcase_36 AC 1,063 ms
40,948 KB
testcase_37 AC 916 ms
41,064 KB
testcase_38 AC 788 ms
40,376 KB
testcase_39 AC 752 ms
40,292 KB
testcase_40 AC 881 ms
40,540 KB
testcase_41 AC 737 ms
40,336 KB
testcase_42 AC 819 ms
40,272 KB
testcase_43 AC 889 ms
40,604 KB
testcase_44 AC 1,003 ms
40,988 KB
testcase_45 AC 1,033 ms
40,848 KB
testcase_46 AC 899 ms
40,916 KB
testcase_47 AC 848 ms
40,624 KB
testcase_48 AC 801 ms
40,280 KB
testcase_49 AC 894 ms
40,956 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 = 5000000;
		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