結果

問題 No.5001 排他的論理和でランニング
ユーザー 👑 p-adicp-adic
提出日時 2022-08-15 00:54:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,209 ms / 1,500 ms
コード長 1,628 bytes
コンパイル時間 625 ms
実行使用メモリ 4,040 KB
スコア 52,428,721
最終ジャッジ日時 2022-08-15 00:54:59
合計ジャッジ時間 32,645 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,200 ms
3,720 KB
testcase_01 AC 37 ms
3,540 KB
testcase_02 AC 136 ms
3,440 KB
testcase_03 AC 548 ms
3,748 KB
testcase_04 AC 1,197 ms
3,844 KB
testcase_05 AC 262 ms
3,652 KB
testcase_06 AC 614 ms
3,508 KB
testcase_07 AC 1,087 ms
3,524 KB
testcase_08 AC 118 ms
4,040 KB
testcase_09 AC 2 ms
3,388 KB
testcase_10 AC 87 ms
3,552 KB
testcase_11 AC 226 ms
3,612 KB
testcase_12 AC 129 ms
3,556 KB
testcase_13 AC 854 ms
4,016 KB
testcase_14 AC 707 ms
3,828 KB
testcase_15 AC 300 ms
3,560 KB
testcase_16 AC 61 ms
3,572 KB
testcase_17 AC 88 ms
3,564 KB
testcase_18 AC 539 ms
3,724 KB
testcase_19 AC 366 ms
3,476 KB
testcase_20 AC 190 ms
3,532 KB
testcase_21 AC 121 ms
3,556 KB
testcase_22 AC 19 ms
3,512 KB
testcase_23 AC 13 ms
3,492 KB
testcase_24 AC 93 ms
3,520 KB
testcase_25 AC 820 ms
3,448 KB
testcase_26 AC 473 ms
3,424 KB
testcase_27 AC 139 ms
3,520 KB
testcase_28 AC 1,172 ms
3,612 KB
testcase_29 AC 1,204 ms
3,664 KB
testcase_30 AC 40 ms
3,496 KB
testcase_31 AC 923 ms
3,724 KB
testcase_32 AC 170 ms
3,492 KB
testcase_33 AC 1,203 ms
3,924 KB
testcase_34 AC 1,209 ms
3,988 KB
testcase_35 AC 1,120 ms
3,680 KB
testcase_36 AC 1,182 ms
3,756 KB
testcase_37 AC 1,188 ms
3,540 KB
testcase_38 AC 184 ms
3,576 KB
testcase_39 AC 173 ms
3,648 KB
testcase_40 AC 561 ms
3,512 KB
testcase_41 AC 35 ms
3,588 KB
testcase_42 AC 343 ms
3,652 KB
testcase_43 AC 530 ms
3,596 KB
testcase_44 AC 1,196 ms
3,700 KB
testcase_45 AC 1,196 ms
3,672 KB
testcase_46 AC 1,206 ms
3,532 KB
testcase_47 AC 381 ms
3,588 KB
testcase_48 AC 210 ms
3,532 KB
testcase_49 AC 550 ms
3,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <list>
#include <vector>
#include <string>
#include <stdio.h>
#include <stdint.h>
#include <iomanip>
using namespace std;

using ll = long long;

#define CIN( LL , A ) LL A; cin >> A 
#define GETLINE( A ) string A; getline( cin , A ) 
#define GETLINE_SEPARATE( A , SEPARATOR ) string A; getline( cin , A , SEPARATOR ) 
#define FOR_LL( VAR , INITIAL , FINAL_PLUS_ONE ) for( ll VAR = INITIAL ; VAR < FINAL_PLUS_ONE ; VAR ++ ) 
#define FOR_ITR( ARRAY , ITR , END ) for( auto ITR = ARRAY .begin() , END = ARRAY .end() ; ITR != END ; ITR ++ ) 
#define REPEAT( HOW_MANY_TIMES ) FOR_LL( VARIABLE_FOR_REPEAT , 0 , HOW_MANY_TIMES ) 
#define RETURN( ANSWER ) cout << ( ANSWER ) << endl; return 0 
#define DOUBLE( PRECISION , ANSWER ) cout << fixed << setprecision( PRECISION ) << ( ANSWER ) << endl; return 0 
#define MIN( A , B ) A < B ? A : B;
#define MAX( A , B ) A < B ? B : A;

template <typename T> inline T Distance( const T& a , const T& b ){ return a < b ? b - a : a - b; }

int main()
{

  CIN( ll , N );
  CIN( ll , M );
  ll A[100000], max = 0 , i = 0 , j = 0 , a;
  while( i < M ){
    cin >> a;
    A[i] = a;
    max = max ^ a;
    ++i;
  }
  const ll L = MIN( 1000000000 / M , N - M );
  while( j < L ){
    cin >> a;
    i = 0;
    ll i_max = -1;
    ll max_current = max;
    while( i < M ){
      ll m = max ^ a ^ A[i];
      if( max_current < m ){
	max_current = m;
	i_max = i;
      }
      ++i;
    }
    if( i_max != -1 ){
      max = max_current;
      A[i_max] = a;
    }
    ++j;
  }
  cout << A[0];
  i = 1;
  while( i < M ){
    cout << " " << A[i];
    ++i;
  }
  RETURN( "" );

}
0