結果

問題 No.5001 排他的論理和でランニング
ユーザー どららどらら
提出日時 2018-03-16 23:59:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,288 bytes
コンパイル時間 1,420 ms
実行使用メモリ 9,000 KB
スコア 0
最終ジャッジ日時 2020-03-12 19:41:36
ジャッジサーバーID
(参考情報)
judge10 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;


int main(){
  int N, M;
  cin >> N >> M;

  vector<int> v;
  rep(i,N){
    v.push_back(1+i);
  }
  int score = 0;
  rep(i,v.size()){
    score ^= v[i];
  }

  int del = 0;
  while(N-del>M){
    bool flg = false;
    rep(i,v.size()){
      if(v[i] == 0) continue;
      int tmp = score ^ v[i];
      if(tmp >= score){
        v[i] = 0;
        score = tmp;
        flg = true;
        break;
      }
    }
    if(!flg){
      rep(i,v.size()){
        if(v[i] == 0) continue;
        if(flg) break;
        rep(j,v.size()){
          if(v[j] == 0) continue;
          int tmp = score ^ v[i] ^ v[j];
          if(tmp >= score){
            v[i] = 0;
            v[j] = 0;
            score = tmp;
            flg = true;
            break;
          }
        }
      }
    }
    if(flg) del++;
  }

  vector<int> ret;
  rep(i,N){
    if(v[i] == 0) continue;
    ret.push_back(v[i]);
  }

  rep(i,ret.size()){
    if(i>0) cout << " ";
    cout << ret[i];
  }
  cout << endl;
  return 0;
}
0