結果
問題 | No.470 Inverse S+T Problem |
ユーザー | kmjp |
提出日時 | 2016-12-20 00:23:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,830 bytes |
コンパイル時間 | 2,493 ms |
コンパイル使用メモリ | 172,244 KB |
実行使用メモリ | 11,972 KB |
最終ジャッジ日時 | 2024-06-01 22:26:54 |
合計ジャッジ時間 | 6,697 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 10 ms
10,724 KB |
testcase_02 | AC | 11 ms
10,644 KB |
testcase_03 | AC | 11 ms
10,752 KB |
testcase_04 | AC | 11 ms
10,752 KB |
testcase_05 | AC | 11 ms
10,624 KB |
testcase_06 | AC | 11 ms
8,052 KB |
testcase_07 | AC | 11 ms
8,064 KB |
testcase_08 | AC | 12 ms
8,000 KB |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 11 ms
10,624 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 12 ms
10,624 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 11 ms
10,624 KB |
testcase_26 | RE | - |
testcase_27 | AC | 11 ms
10,752 KB |
testcase_28 | AC | 5 ms
6,912 KB |
testcase_29 | AC | 4 ms
6,912 KB |
testcase_30 | AC | 5 ms
6,964 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- template<class V> class MaxFlow_dinic { public: struct edge { int to,reve;V cap;}; static const int MV = 10100; vector<edge> E[MV]; int itr[MV],lev[MV]; void add_edge(int x,int y,V cap,bool undir=false) { E[x].push_back((edge){y,(int)E[y].size(),cap}); E[y].push_back((edge){x,(int)E[x].size()-1,undir?cap:0}); } void bfs(int cur) { MINUS(lev); queue<int> q; lev[cur]=0; q.push(cur); while(q.size()) { int v=q.front(); q.pop(); ITR(e,E[v]) if(e->cap>0 && lev[e->to]<0) lev[e->to]=lev[v]+1, q.push(e->to); } } V dfs(int from,int to,V cf) { if(from==to) return cf; for(;itr[from]<E[from].size();itr[from]++) { edge* e=&E[from][itr[from]]; if(e->cap>0 && lev[from]<lev[e->to]) { V f=dfs(e->to,to,min(cf,e->cap)); if(f>0) { e->cap-=f; E[e->to][e->reve].cap += f; return f; } } } return 0; } V maxflow(int from, int to) { V fl=0,tf; while(1) { bfs(from); if(lev[to]<0) return fl; ZERO(itr); while((tf=dfs(from,to,numeric_limits<V>::max()))>0) fl+=tf; } } }; int N; string S[101010]; int A[101010][3]; MaxFlow_dinic<int> mf; string SS[26]; char toto(int a) { if(a<26) return 'a'+a; return 'A'+a-26; } void solve() { int i,j,k,l,r,x,y; string s; cin>>N; FOR(i,N) { cin>>S[i]; FOR(x,3) { if(S[i][x]>='a' && S[i][x]<='z') A[i][x]=S[i][x]-'a'; if(S[i][x]>='A' && S[i][x]<='Z') A[i][x]=S[i][x]-'A'+26; } } if(2*N>52+52*52) return _P("Impossible\n"); FOR(i,52) mf.add_edge(2000+i,2100+i,1); FOR(i,52) FOR(x,52*52) mf.add_edge(2100+i,3000+x,1); FOR(i,N) { mf.add_edge(0,100+i,1); mf.add_edge(100+i,2000+A[i][0],1); mf.add_edge(3000+A[i][1]*52+A[i][2],1,1); mf.add_edge(100+i,2000+A[i][2],1); mf.add_edge(3000+A[i][0]*52+A[i][1],1,1); } if(mf.maxflow(0,1)!=N) return _P("Impossible\n"); FOR(i,52) { FORR(e,mf.E[2100+i]) if(e.to>=3000 && e.cap==0) { SS[i]=toto((e.to-3000)/52); SS[i]+=toto((e.to-3000)%52); } } FOR(i,N) { if(SS[A[i][0]]!="") { cout<<S[i].substr(0,1)<<" "<<S[i].substr(1,2)<<endl; SS[A[i][0]]=""; } else { cout<<S[i].substr(0,2)<<" "<<S[i].substr(2,1)<<endl; SS[A[i][2]]=""; } } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }