結果

問題 No.5001 排他的論理和でランニング
ユーザー IL_mstaIL_msta
提出日時 2018-03-17 16:33:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,020 ms / 1,500 ms
コード長 3,280 bytes
コンパイル時間 929 ms
実行使用メモリ 7,420 KB
スコア 34,222,360
最終ジャッジ日時 2020-03-12 20:14:00
ジャッジサーバーID
(参考情報)
judge10 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,013 ms
5,380 KB
testcase_01 AC 1,008 ms
5,376 KB
testcase_02 AC 1,010 ms
5,380 KB
testcase_03 AC 1,015 ms
5,380 KB
testcase_04 AC 1,020 ms
5,380 KB
testcase_05 AC 1,013 ms
5,376 KB
testcase_06 AC 1,008 ms
5,380 KB
testcase_07 AC 1,010 ms
5,380 KB
testcase_08 AC 1,019 ms
5,380 KB
testcase_09 AC 1,011 ms
5,380 KB
testcase_10 AC 1,013 ms
5,376 KB
testcase_11 AC 1,017 ms
5,376 KB
testcase_12 AC 1,007 ms
5,380 KB
testcase_13 AC 1,014 ms
5,376 KB
testcase_14 AC 1,015 ms
5,376 KB
testcase_15 AC 1,012 ms
5,376 KB
testcase_16 AC 1,007 ms
5,380 KB
testcase_17 AC 1,007 ms
5,376 KB
testcase_18 AC 1,014 ms
5,380 KB
testcase_19 AC 1,011 ms
5,380 KB
testcase_20 AC 1,008 ms
5,384 KB
testcase_21 AC 1,012 ms
5,380 KB
testcase_22 AC 1,010 ms
7,420 KB
testcase_23 AC 1,012 ms
5,376 KB
testcase_24 AC 1,010 ms
5,376 KB
testcase_25 AC 1,010 ms
5,380 KB
testcase_26 AC 1,011 ms
5,376 KB
testcase_27 AC 1,007 ms
5,376 KB
testcase_28 AC 1,016 ms
5,380 KB
testcase_29 AC 1,011 ms
5,376 KB
testcase_30 AC 1,007 ms
5,380 KB
testcase_31 AC 1,012 ms
5,380 KB
testcase_32 AC 1,008 ms
5,380 KB
testcase_33 AC 1,020 ms
5,380 KB
testcase_34 AC 1,011 ms
5,380 KB
testcase_35 AC 1,008 ms
5,380 KB
testcase_36 AC 1,010 ms
5,380 KB
testcase_37 AC 1,015 ms
5,380 KB
testcase_38 AC 1,008 ms
5,380 KB
testcase_39 AC 1,014 ms
6,148 KB
testcase_40 AC 1,006 ms
5,380 KB
testcase_41 AC 1,010 ms
5,376 KB
testcase_42 AC 1,009 ms
5,380 KB
testcase_43 AC 1,012 ms
5,384 KB
testcase_44 AC 1,015 ms
5,376 KB
testcase_45 AC 1,014 ms
5,376 KB
testcase_46 AC 1,010 ms
6,148 KB
testcase_47 AC 1,009 ms
5,380 KB
testcase_48 AC 1,012 ms
5,380 KB
testcase_49 AC 1,018 ms
5,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#pragma region include
#include <iostream>
#include <iomanip>
#include <stdio.h>

#include <sstream>
#include <algorithm>
#include <iterator>
#include <cmath>
#include <complex>

#include <string>
#include <cstring>
#include <vector>
#include <bitset>

#include <queue>
#include <set>
#include <map>
#include <stack>
#include <list>

#include <ctime>
////
#include <random>//
#pragma endregion //#include
/////////

#pragma region typedef
typedef long long LL;
typedef long double LD;
typedef unsigned long long ULL;
#pragma endregion //typedef
////定数
const int INF = (int)1e9;
const LL MOD = (LL)1e9+7;
const LL LINF = (LL)4e18+20;
const LD PI = acos(-1.0);
const double EPS = 1e-9;
/////////
using namespace::std;

#pragma region
#include<time.h>
namespace TIME{
clock_t start,end;
void time_start(){
	start = clock();
}
void time_set(int t){
	end = start + t;
}
bool check(){
	return clock() < end;
}
/*
unsigned long long get_cycle(){
	return __rdtsc();
}
unsigned long long start,limit;
void time_start(){
	start = get_cycle();
}
//あたいをーさぐらないとーだめー
void time_set(unsigned long long num){limit = num;}
bool check(){return (get_cycle() < start+limit);}
*/
}
#pragma endregion //時間計測

#pragma region

namespace RAND{
unsigned long xor128(){ 
	static unsigned long x=123456789,y=362436069,z=521288629,w=88675123; 
	unsigned long t; 
	t=(x^(x<<11));x=y;y=z;z=w;
	return( w=(w^(w>>19))^(t^(t>>8)) ); 
}
LL getRAND(LL P){
	return ((xor128()%P)+P)%P;
}
}

#pragma endregion //乱数

///////////////////
int N,M;
int best;
int nowVal;//現在の値
vector<int> A;
vector<int> use;//使用中
vector<int> Notuse;//未使用
vector<int> bestUse;
void cal(){//一回だけ
	int ret = 0;
	for(int i=0;i<M;++i){
		ret ^= A[ use[i] ];
	}
	best = max(best,ret);
	bestUse = use;
	nowVal = ret;
}
void output(){
	bool flag = false;
	for(int i=0;i<M;++i){
		if(flag){
			cout << ' ';
		}
		cout << A[ use[i] ];
		flag = true;
	}
	cout << endl;
}
void solve(){
	TIME::time_start();
	TIME::time_set(1000000);
	cin>>N>>M;
	A = vector<int>(N);
	for(int i=0;i<N;++i){
		cin>>A[i];
	}
	
	sort(A.begin(),A.end());
	//reverse(A.begin(),A.end());
	use = vector<int>(M);
	Notuse = vector<int>(N-M);
	for(int i=0;i<N;++i){
		if(i<M){
			use[i] = i;
		}else{
			Notuse[i-M] = i;
		}
	}
	if( N==M ){
		output();
		return;
	}

	int count = 800000;
	int loop = 0;
	while(TIME::check()){
		++loop;
		count = max(0,count-1);
		//cout << count << " " << best << "\r";
		//未使用を一つ選ぶ
		int ter0 = RAND::getRAND(N-M);

		//使用中を一つ選ぶ
		int ter1 = RAND::getRAND(M);

		//交換
		int val = A[ Notuse[ter0] ]^A[ use[ter1] ];
		nowVal ^= val;
		
		if( best - nowVal < (count) ){
			swap( Notuse[ter0],use[ter1] );
			if( best -nowVal < 0 ){
				best = nowVal;
				bestUse = use;
			}
		}else{//
			nowVal ^= val;
		}
	}
	output();
	cerr << loop << endl;
	cerr << count << ":";
	cerr << TIME::start << " " << TIME::end << " ";
	cerr << clock() <<  endl;
}

#pragma region main
signed main(void){
	std::cin.tie(0);
	std::ios::sync_with_stdio(false);
	std::cout << std::fixed;//小数を10進数表示
	cout << setprecision(16);//小数点以下の桁数を指定//coutとcerrで別	

	solve();
}
#pragma endregion //main()
0