結果
| 問題 |
No.1427 Simplified Tetris
|
| コンテスト | |
| ユーザー |
kiyoshi0205
|
| 提出日時 | 2021-03-13 00:58:08 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 2,000 ms |
| コード長 | 7,878 bytes |
| コンパイル時間 | 3,672 ms |
| コンパイル使用メモリ | 210,448 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-15 00:54:35 |
| 合計ジャッジ時間 | 4,858 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 37 |
ソースコード
#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
// #include<ext/pb_ds/assoc_container.hpp>
// #include<ext/pb_ds/tree_policy.hpp>
// #include<ext/pb_ds/tag_and_trait.hpp>
// using namespace __gnu_pbds;
// #include<boost/multiprecision/cpp_int.hpp>
// namespace multiprecisioninteger = boost::multiprecision;
// using cint=multiprecisioninteger::cpp_int;
using namespace std;
using ll=long long;
using datas=pair<ll,ll>;
using ddatas=pair<long double,long double>;
using tdata=pair<ll,datas>;
using vec=vector<ll>;
using mat=vector<vec>;
using pvec=vector<datas>;
using pmat=vector<pvec>;
// using llset=tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update>;
#define For(i,a,b) for(i=a;i<(ll)b;++i)
#define bFor(i,b,a) for(i=b,--i;i>=(ll)a;--i)
#define rep(i,N) For(i,0,N)
#define rep1(i,N) For(i,1,N)
#define brep(i,N) bFor(i,N,0)
#define brep1(i,N) bFor(i,N,1)
#define all(v) (v).begin(),(v).end()
#define allr(v) (v).rbegin(),(v).rend()
#define vsort(v) sort(all(v))
#define vrsort(v) sort(allr(v))
#define uniq(v) vsort(v);(v).erase(unique(all(v)),(v).end())
#define endl "\n"
#define popcount __builtin_popcountll
#define eb emplace_back
#define print(x) cout<<x<<endl
#define printyes print("Yes")
#define printno print("No")
#define printYES print("YES")
#define printNO print("NO")
#define output(v) do{bool f=0;for(auto outi:v){cout<<(f?" ":"")<<outi;f=1;}cout<<endl;}while(0)
#define matoutput(v) do{for(auto outimat:v)output(outimat);}while(0)
constexpr ll mod=1000000007;
// constexpr ll mod=998244353;
constexpr ll inf=1LL<<60;
constexpr long double eps=1e-9;
const long double PI=acosl(-1);
template<class T,class E> ostream& operator<<(ostream& os,const pair<T,E>& p){return os<<"("<<p.first<<","<<p.second<<")";}
template<class T> ostream& operator<<(ostream& os,const vector<T>& v){
os<<"{";bool f=false;
for(auto& x:v){if(f)os<<",";os<<x;f=true;}
os<<"}";
return os;
}
template<class T> ostream& operator<<(ostream& os,const set<T>& v){
os<<"{";bool f=false;
for(auto& x:v){if(f)os<<",";os<<x;f=true;}
os<<"}";
return os;
}
template<class T,class E> ostream& operator<<(ostream& os,const map<T,E>& v){
os<<"{";bool f=false;
for(auto& x:v){if(f)os<<",";os<<x;f=true;}
os<<"}";
return os;
}
template<class T> inline bool chmax(T& a,T b){bool x=a<b;if(x)a=b;return x;}
template<class T> inline bool chmin(T& a,T b){bool x=a>b;if(x)a=b;return x;}
#ifdef DEBUG
void debugg(){cout<<endl;}
template<class T,class... Args>void debugg(const T& x,const Args&... args){cout<<" "<<x;debugg(args...);}
#define debug(...) cout<<__LINE__<<" ["<<#__VA_ARGS__<<"]:",debugg(__VA_ARGS__)
#else
#define debug(...) (void(0))
#endif
void startupcpp(){
cin.tie(0);
ios::sync_with_stdio(false);
}
template<class Cap> struct mf_graph{
public:
mf_graph():_n(0){}
mf_graph(int n):_n(n),g(n){}
int add_edge(int from,int to,Cap cap){
assert(0<=from&&from<_n);
assert(0<=to&&to<_n);
assert(0<=cap);
int m=int(pos.size());
pos.push_back({from,int(g[from].size())});
int from_id=int(g[from].size());
int to_id=int(g[to].size())+int(from==to);
g[from].push_back(_edge{to,to_id,cap});
g[to].push_back(_edge{from,from_id,0});
return m;
}
struct edge {
int from,to;
Cap cap,flow;
};
edge get_edge(int i){
assert(0<=i&&i<int(pos.size()));
auto _e=g[pos[i].first][pos[i].second];
auto _re=g[_e.to][_e.rev];
return edge{pos[i].first,_e.to,_e.cap+_re.cap,_re.cap};
}
vector<edge> edges(){
vector<edge> result;
for(int i=0;i<int(pos.size());i++){
result.push_back(get_edge(i));
}
return result;
}
void change_edge(int i,Cap new_cap,Cap new_flow){
assert(0<=i&&i<int(pos.size()));
assert(0<=new_flow&&new_flow<=new_cap);
auto&_e=g[pos[i].first][pos[i].second];
auto&_re=g[_e.to][_e.rev];
_e.cap=new_cap-new_flow;
_re.cap=new_flow;
}
Cap flow(int s,int t){
return flow(s,t,numeric_limits<Cap>::max());
}
Cap flow(int s,int t,Cap flow_limit){
assert(0<=s&&s<_n);
assert(0<=t&&t<_n);
assert(s!=t);
vector<int> level(_n),iter(_n);
simple_queue<int> que;
auto bfs=[&](){
fill(level.begin(),level.end(),-1);
level[s]=0;
que.clear();
que.push(s);
while(!que.empty()){
int v=que.front();
que.pop();
for(auto e:g[v]){
if(e.cap==0||level[e.to]>=0)continue;
level[e.to]=level[v]+1;
if(e.to==t)return;
que.push(e.to);
}
}
};
auto dfs=[&](auto self,int v,Cap up){
if(v==s)return up;
Cap res=0;
int level_v=level[v];
for(int&i=iter[v]; i<int(g[v].size()); i++){
_edge&e=g[v][i];
if(level_v<=level[e.to]||g[e.to][e.rev].cap==0)continue;
Cap d=self(self,e.to,min(up-res,g[e.to][e.rev].cap));
if(d<=0)continue;
g[v][i].cap+=d;
g[e.to][e.rev].cap-=d;
res+=d;
if(res==up)break;
}
return res;
};
Cap flow=0;
while(flow<flow_limit){
bfs();
if(level[t]==-1)break;
fill(iter.begin(),iter.end(),0);
while(flow<flow_limit){
Cap f=dfs(dfs,t,flow_limit-flow);
if(!f)break;
flow+=f;
}
}
return flow;
}
vector<bool> min_cut(int s){
vector<bool> visited(_n);
simple_queue<int> que;
que.push(s);
while(!que.empty()){
int p=que.front();
que.pop();
visited[p]=true;
for(auto e:g[p]){
if(e.cap&&!visited[e.to]){
visited[e.to]=true;
que.push(e.to);
}
}
}
return visited;
}
private:
int _n;
struct _edge{
int to,rev;
Cap cap;
};
vector<pair<int,int>> pos;
vector<vector<_edge>> g;
template<class T>struct simple_queue{
vector<T> payload;
int pos=0;
void reserve(int n){payload.reserve(n);}
int size() const{return int(payload.size())-pos;}
bool empty() const{return pos==int(payload.size());}
void push(const T& t){payload.push_back(t);}
T& front(){return payload[pos];}
void clear(){
payload.clear();
pos=0;
}
void pop(){++pos;}
};
};
ll H,W;
bool check(vector<string> g){
ll i,j,cnt=0;
rep(i,H)rep(j,W)cnt+=g[i][j]=='#';
if(cnt&1)return false;
cnt/=2;
mf_graph<ll> fl(H*W+2);
rep(i,H)rep(j,W){
if(g[i][j]=='#'){
if(i&&g[i-1][j]=='#'){
if((i+j)&1)fl.add_edge((i-1)*W+j,i*W+j,1);
else fl.add_edge(i*W+j,(i-1)*W+j,1);
}
if(j&&g[i][j-1]=='#'){
if((i+j)&1)fl.add_edge(i*W+j-1,i*W+j,1);
else fl.add_edge(i*W+j,i*W+j-1,1);
}
}
if((i+j)&1)fl.add_edge(i*W+j,H*W+1,1);
else fl.add_edge(H*W,i*W+j,1);
}
if(cnt!=fl.flow(H*W,H*W+1))return false;
printyes;
vector<string> pr(H,string(W,'.'));
char now='a';
for(auto x:fl.edges()){
if(max(x.from,x.to)>=H*W||!x.flow)continue;
pr[x.from/W][x.from%W]=pr[x.to/W][x.to%W]=now++;
if(now>'z')now='A';
}
rep(i,H)print(pr[i]);
return true;
}
int main(){
startupcpp();
// int codeforces;cin>>codeforces;while(codeforces--){
ll i,j,cnt=0;
cin>>H>>W;
vector<string> v(H);
{
bool f=false;
rep(i,H){
cin>>v[i];
rep(j,W)if(v[i][j]=='#')break;
if(v[i]==string(W,'#')){
printno;
return 0;
}
if(j<W){
cnt++;
f=true;
}else if(f){
printno;
return 0;
}
}
rep(i,cnt)swap(v[i],v[i+H-cnt]);
v.resize(cnt);
}
ll bit;
rep(bit,1<<H){
if(popcount(bit)!=cnt)continue;
vector<string> g(H,string(W,'#'));
j=0;
rep(i,H)if(bit>>i&1)g[i]=v[j++];
i=0;
while(1){
if(check(g))return 0;
rep(j,W){
if(g[i][j]=='.')break;
g[i][j]='.';
}
if(j<W)break;
i++;
}
}
printno;
}
kiyoshi0205