結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
4,904 KB
testcase_01 AC 32 ms
4,904 KB
testcase_02 AC 108 ms
6,948 KB
testcase_03 AC 120 ms
4,904 KB
testcase_04 AC 129 ms
6,952 KB
testcase_05 AC 109 ms
4,904 KB
testcase_06 AC 110 ms
4,900 KB
testcase_07 AC 107 ms
4,904 KB
testcase_08 AC 102 ms
4,908 KB
testcase_09 AC 1 ms
4,900 KB
testcase_10 AC 80 ms
4,900 KB
testcase_11 AC 116 ms
4,904 KB
testcase_12 AC 108 ms
6,948 KB
testcase_13 AC 122 ms
4,904 KB
testcase_14 AC 114 ms
6,948 KB
testcase_15 AC 108 ms
4,904 KB
testcase_16 AC 54 ms
6,948 KB
testcase_17 AC 76 ms
6,948 KB
testcase_18 AC 111 ms
4,900 KB
testcase_19 AC 107 ms
4,900 KB
testcase_20 AC 120 ms
6,956 KB
testcase_21 AC 106 ms
4,908 KB
testcase_22 AC 16 ms
4,900 KB
testcase_23 AC 11 ms
4,900 KB
testcase_24 AC 81 ms
6,948 KB
testcase_25 AC 106 ms
6,948 KB
testcase_26 AC 107 ms
4,900 KB
testcase_27 AC 111 ms
4,904 KB
testcase_28 AC 111 ms
4,904 KB
testcase_29 AC 112 ms
4,900 KB
testcase_30 AC 36 ms
4,904 KB
testcase_31 AC 115 ms
4,904 KB
testcase_32 AC 110 ms
4,904 KB
testcase_33 AC 125 ms
4,904 KB
testcase_34 AC 121 ms
6,948 KB
testcase_35 AC 111 ms
6,948 KB
testcase_36 AC 113 ms
4,904 KB
testcase_37 AC 110 ms
4,900 KB
testcase_38 AC 117 ms
4,904 KB
testcase_39 AC 117 ms
4,904 KB
testcase_40 AC 110 ms
4,908 KB
testcase_41 AC 30 ms
4,900 KB
testcase_42 AC 110 ms
6,952 KB
testcase_43 AC 110 ms
4,904 KB
testcase_44 AC 112 ms
4,904 KB
testcase_45 AC 113 ms
4,900 KB
testcase_46 AC 105 ms
4,900 KB
testcase_47 AC 117 ms
4,904 KB
testcase_48 AC 109 ms
4,900 KB
testcase_49 AC 120 ms
6,952 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( 100000000 / 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