結果

問題 No.179 塗り分け
ユーザー ytqm3ytqm3
提出日時 2021-11-19 20:23:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,667 ms / 3,000 ms
コード長 4,617 bytes
コンパイル時間 2,543 ms
コンパイル使用メモリ 215,876 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-30 05:33:58
合計ジャッジ時間 15,083 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 87 ms
4,380 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,384 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 11 ms
4,376 KB
testcase_11 AC 11 ms
4,376 KB
testcase_12 AC 1,667 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 26 ms
4,376 KB
testcase_19 AC 25 ms
4,376 KB
testcase_20 AC 964 ms
4,380 KB
testcase_21 AC 169 ms
4,376 KB
testcase_22 AC 179 ms
4,376 KB
testcase_23 AC 7 ms
4,376 KB
testcase_24 AC 118 ms
4,376 KB
testcase_25 AC 3 ms
4,376 KB
testcase_26 AC 60 ms
4,376 KB
testcase_27 AC 669 ms
4,376 KB
testcase_28 AC 41 ms
4,380 KB
testcase_29 AC 1,040 ms
4,376 KB
testcase_30 AC 481 ms
4,380 KB
testcase_31 AC 1,247 ms
4,380 KB
testcase_32 AC 349 ms
4,380 KB
testcase_33 AC 1,292 ms
4,380 KB
testcase_34 AC 266 ms
4,376 KB
testcase_35 AC 1,455 ms
4,376 KB
testcase_36 AC 2 ms
4,376 KB
testcase_37 AC 2 ms
4,380 KB
testcase_38 AC 2 ms
4,376 KB
testcase_39 AC 2 ms
4,376 KB
testcase_40 AC 2 ms
4,376 KB
testcase_41 AC 2 ms
4,380 KB
testcase_42 AC 2 ms
4,376 KB
testcase_43 AC 17 ms
4,376 KB
testcase_44 AC 112 ms
4,376 KB
testcase_45 AC 4 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
typedef uint64_t u64;
typedef int64_t i64;
using namespace std;

void solve();

int main(){
  cout<<fixed<<setprecision(15);
  bool is_multicase=false;
  int T=1;
  if(is_multicase){
    cin>>T;
  }
  for(int i=0;i<T;++i){
    solve();
  }
  return 0;
}

template<typename T> void turtle_in(T& n){
  cin>>n;
}

template<typename T,typename U> void turtle_in(pair<T,U>& p){
  turtle_in(p.first);
  turtle_in(p.second);
}

template<typename T> void turtle_in(vector<T>& v){
  for(auto& u:v){
    turtle_in(u);
  }
}

template<typename T> void turtle_out(T& n){
  cout<<n;
}

template<typename T,typename U> void turtle_out(pair<T,U>& p){
  cout<<"{";
  turtle_out(p.first);
  cout<<", ";
  turtle_out(p.second);
  cout<<"}";
}

template<typename T> void turtle_out(vector<T>& v){
  for(int i=0;i<int(v.size());++i){
    turtle_out(v[i]);
    if(i!=v.size()-1){
      cout<<" ";
    }
  }
  cout<<endl;
}

template<typename T> void turtle_out(vector<vector<T>>& v){
  for(int i=0;i<int(v.size());++i){
    turtle_out(v[i]);
  }
}

void scan(){}

template<typename T,class... Args> void scan(T& n,Args&... args){
  turtle_in(n);
  scan(args...);
}

void print(){}

template<typename T,class... Args> void print(T n,Args... args){
  turtle_out(n);
  print(args...);
}

template<typename T> void println(T n){
  turtle_out(n);
  cout<<endl;
}

template<typename T,class... Args> void println(T n,Args... args){
  turtle_out(n);
  cout<<" ";
  println(args...);
}

template<u64 mod> struct modint{
  u64 val;
  modint(i64 val_=0):val((val_%i64(mod)+i64(mod))%i64(mod)){}
  modint operator-(){
    return modint(mod-val);
  }
  modint operator+(modint rhs){
    return modint(*this)+=rhs;
  }
  modint operator-(modint rhs){
    return modint(*this)-=rhs;
  }
  modint operator*(modint rhs){
    return modint(*this)*=rhs;
  }
  modint operator/(modint rhs){
    return modint(*this)/=rhs;
  }
  modint &operator+=(modint rhs){
    val+=rhs.val;
    val-=((val>=mod)?mod:0);
    return (*this);
  }
  modint &operator-=(modint rhs){
    val+=((val<rhs.val)?mod:0);
    val-=rhs.val;
    return (*this);
  }
  modint &operator*=(modint rhs){
    val=val*rhs.val%mod;
    return (*this);
  }
  modint &operator/=(modint rhs){
    u64 ex=mod-2;
    modint now=1;
    while(ex){
      now*=((ex&1)?rhs:1);
      rhs*=rhs,ex>>=1;
    }
    return (*this)*=now;
  }
  bool operator==(modint rhs){
    return val==rhs.val;
  }
  bool operator!=(modint rhs){
    return val!=rhs.val;
  }
  friend std::ostream &operator<<(std::ostream& os,modint x){
    return os<<(x.val);
  }
  friend std::istream &operator>>(std::istream& is,modint& x){
    u64 t;
    is>>t,x=t;
    return is;
  }
};

template<typename T,typename U> T power(T a,U n){
  T res=1;
  while(n>0){
    if(n%2==1){
      res*=a;
    }
    a*=a;
    n/=2;
  }
  return res;
}

template<typename T> struct genrand{
  uniform_int_distribution<T> gen;
  mt19937 engine;
  genrand(T a,T b):gen(a,b){
    random_device seed_gen;
    engine.seed(seed_gen());
  }
  T operator()(){
    return gen(engine);
  }
};

template<typename T> struct comb{
  vector<T> dat,idat;
  comb(int mx=3000000):dat(mx+1,1),idat(mx+1,1){
    for(int i=1;i<=mx;++i){
      dat[i]=dat[i-1]*i;
    }
    idat[mx]/=dat[mx];
    for(int i=mx;i>0;--i){
      idat[i-1]=idat[i]*i;
    }
  }
  T operator()(int n,int k){
    if(n<0||k<0||n<k){
      return 0;
    }
    return dat[n]*idat[k]*idat[n-k];
  }
};

void solve(){
  int H,W;
  scan(H,W);
  vector<string> S(H);
  scan(S);
  vector<pair<int,int>> all;
  for(int i=0;i<H;++i){
    for(int j=0;j<W;++j){
      if(S[i][j]=='#'){
        all.emplace_back(i,j);
      }
    }
  }
  if(all.size()==0){
    println("NO");
    return;
  }
  for(int I=0;I<=H-1;++I){
    for(int J=-W+1;J<=W-1;++J){
      if(I==0 && J==0){
        continue;
      }
      map<pair<int,int>,vector<int>> tmp;
      if(I!=0){
        for(auto p:all){
          int i=p.first,j=p.second;
          tmp[{i%I,j-(i/I)*J}].emplace_back(i/I);
        }
      }
      else{
        int J_=-J,I_=-I;
        if(J_<0){
          J_=J,I_=I;
        }
        for(auto p:all){
          int i=p.first,j=p.second;
          tmp[{i-(j/J_)*I_,j%J_}].emplace_back(j/J_);
        }
      }
      bool f=1;
      for(auto [_,v]:tmp){
        while(2<=v.size()){
          int n=v.size();
          if(v[n-2]+1==v[n-1]){
            v.resize(n-2);
          }
          else{
            break;
          }
        }
        if(v.size()!=0){
          f=0;
        }
      }
      if(f){
        println("YES");
        return;
      }
    }
  }
  println("NO");
}
0