結果

問題 No.1149 色塗りゲーム
ユーザー Imperi_NightImperi_Night
提出日時 2020-08-07 22:03:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,835 bytes
コンパイル時間 1,323 ms
コンパイル使用メモリ 144,868 KB
実行使用メモリ 24,420 KB
平均クエリ数 10.42
最終ジャッジ日時 2023-09-24 04:29:35
合計ジャッジ時間 6,129 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
24,204 KB
testcase_01 AC 35 ms
24,252 KB
testcase_02 AC 36 ms
23,820 KB
testcase_03 AC 35 ms
23,388 KB
testcase_04 AC 35 ms
23,592 KB
testcase_05 AC 40 ms
23,496 KB
testcase_06 AC 35 ms
23,976 KB
testcase_07 AC 37 ms
24,000 KB
testcase_08 AC 34 ms
23,340 KB
testcase_09 AC 34 ms
23,352 KB
testcase_10 AC 35 ms
23,604 KB
testcase_11 AC 36 ms
24,252 KB
testcase_12 AC 35 ms
24,348 KB
testcase_13 AC 35 ms
23,628 KB
testcase_14 AC 37 ms
23,496 KB
testcase_15 WA -
testcase_16 AC 38 ms
23,988 KB
testcase_17 AC 37 ms
23,772 KB
testcase_18 WA -
testcase_19 AC 37 ms
23,328 KB
testcase_20 WA -
testcase_21 AC 38 ms
23,784 KB
testcase_22 WA -
testcase_23 AC 40 ms
23,364 KB
testcase_24 AC 40 ms
23,388 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 75 ms
24,252 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 90 ms
24,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <cctype>
#include <chrono>
#include <cmath>
#include <complex>
#include <cstdint>
#include <cstdlib>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <limits>
#include <list>
#include <map>
#include <memory>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <type_traits>
#include <unordered_map>
#include <utility>
#include <vector>

/* template start */

using i64 = std::int_fast64_t;
using u64 = std::uint_fast64_t;

#define rep(i, a, b) for (i64 i = (a); (i) < (b); (i)++)
#define all(i) i.begin(), i.end()

#ifdef LOCAL
#define debug(...)                                                    \
  std::cerr << "LINE: " << __LINE__ << "  [" << #__VA_ARGS__ << "]:", \
      debug_out(__VA_ARGS__)
#else
#define debug(...)
#endif

void debug_out() { std::cerr << std::endl; }

template <typename Head, typename... Tail>
void debug_out(Head h, Tail... t) {
  std::cerr << " " << h;
  if (sizeof...(t) > 0) std::cout << " :";
  debug_out(t...);
}

template <typename T1, typename T2>
std::ostream& operator<<(std::ostream& os, std::pair<T1, T2> pa) {
  return os << pa.first << " " << pa.second;
}

template <typename T>
std::ostream& operator<<(std::ostream& os, std::vector<T> vec) {
  for (std::size_t i = 0; i < vec.size(); i++)
    os << vec[i] << (i + 1 == vec.size() ? "" : " ");
  return os;
}

template <typename T1, typename T2>
inline bool chmax(T1& a, T2 b) {
  return a < b && (a = b, true);
}

template <typename T1, typename T2>
inline bool chmin(T1& a, T2 b) {
  return a > b && (a = b, true);
}

template <typename Num>
constexpr Num mypow(Num a, u64 b, Num id = 1) {
  if (b == 0) return id;
  Num x = id;
  while (b > 0) {
    if (b & 1) x *= a;
    a *= a;
    b >>= 1;
  }
  return x;
}

/* template end */

int main() {
  std::cin.tie(nullptr);
  std::ios::sync_with_stdio(false);

  i64 n;
  std::cin>>n;

  std::vector<i64> grundy(n+1,0);

  rep(i,1,n+1){
    std::set<i64> set;
    rep(j,0,i)set.emplace(grundy[j]^grundy[i-1-j]);
    rep(j,0,i-1)set.emplace(grundy[j]^grundy[i-2-j]);

    rep(j,0,1000){
      if(set.find(j)==set.end()){
        grundy[i]=j;
        break;
      }
    }
  }

  using P=std::pair<i64,i64>;

  std::list<P> seg;

  seg.emplace_back(0,n);
  i64 num=grundy[n];

  while(true){
    i64 max=-1;
    std::list<P>::iterator maxitr;
    for(auto itr=seg.begin();itr!=seg.end();itr++){
      if(chmax(max,grundy[itr->second-itr->first])){
        maxitr=itr;
      }
    }

    P tmp_seg=*maxitr;
    seg.erase(maxitr);

    i64 len=tmp_seg.second-tmp_seg.first;

    num^=grundy[len];

    P erase_seg;

    rep(i,0,len){
      if((grundy[i]^grundy[len-1-i]) == num){
        erase_seg={tmp_seg.first+i,tmp_seg.first+i+1};
      }
    }
    rep(i,0,len-1){
      if((grundy[i]^grundy[len-2-i])==num){
        erase_seg={tmp_seg.first+i,tmp_seg.first+i+2};
      }
    }

    num=0;
    if(tmp_seg.first!=erase_seg.first)seg.emplace_back(tmp_seg.first,erase_seg.first);
    if(tmp_seg.second!=erase_seg.second)seg.emplace_back(erase_seg.second,tmp_seg.second);

    std::cout<<erase_seg.second-erase_seg.first<<" "<<erase_seg.first+1<<std::endl;

    i64 t;
    std::cin>>t;

    if(t==0)break;
    if(t==1)break;

    i64 k,x;
    std::cin>>k>>x;

    if(t==2)break;

    for(auto itr=seg.begin();itr!=seg.end();itr++){
      if(itr->first <= x-1&&x-1+k<=itr->second){
        debug(*itr);
        P tmptmp=*itr;
        seg.erase(itr);
        if(tmptmp.first!=x-1)seg.emplace_back(tmptmp.first,x-1);
        if(tmptmp.second!=x-1+k)seg.emplace_back(x-1+k,tmptmp.second);
        break;
      }
    }

    for(auto e:seg){
      debug(e);
      num^=grundy[e.second-e.first];
    }
  }

  return 0;
}
0