結果
問題 | No.1479 Matrix Eraser |
ユーザー | kotatsugame |
提出日時 | 2021-04-24 05:34:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,995 bytes |
コンパイル時間 | 1,055 ms |
コンパイル使用メモリ | 93,168 KB |
実行使用メモリ | 9,984 KB |
最終ジャッジ日時 | 2024-07-04 08:59:53 |
合計ジャッジ時間 | 9,198 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1,043 ms
5,376 KB |
testcase_08 | AC | 1,916 ms
5,376 KB |
testcase_09 | TLE | - |
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 | -- | - |
コンパイルメッセージ
a.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
ソースコード
#line 1 "a.cpp" #include<iostream> #include<vector> #include<algorithm> using namespace std; #line 1 "/home/kotatsugame/library/graph/MF_Dinic.cpp" //Dinic O(EV^2) #line 3 "/home/kotatsugame/library/graph/MF_Dinic.cpp" #include<utility> #line 5 "/home/kotatsugame/library/graph/MF_Dinic.cpp" #include<queue> #include<limits> template<typename T> struct MF{ struct edge{ int to,rev; T cap; }; vector<vector<edge> >G; vector<int>level,iter; MF(int n_=0):G(n_),level(n_),iter(n_){} void add_edge(int from,int to,T cap) { G[from].push_back({to,(int)G[to].size(),cap}); G[to].push_back({from,(int)G[from].size()-1,0}); } T dfs(int u,int t,T f) { if(u==t)return f; for(;iter[u]<G[u].size();iter[u]++) { edge&e=G[u][iter[u]]; if(e.cap>0&&level[u]<level[e.to]) { T d=dfs(e.to,t,min(f,e.cap)); if(d>0) { e.cap-=d; G[e.to][e.rev].cap+=d; return d; } } } return 0; } T max_flow(int s,int t) { T ret=0; for(;;) { fill(level.begin(),level.end(),-1); queue<int>P; level[s]=0; P.push(s); while(!P.empty()) { int u=P.front();P.pop(); for(edge&e:G[u]) { if(e.cap>0&&level[e.to]<0) { level[e.to]=level[u]+1; P.push(e.to); } } } if(level[t]<0)return ret; fill(iter.begin(),iter.end(),0); for(T f;(f=dfs(s,t,numeric_limits<T>::max()))>0;)ret+=f; } } }; #line 6 "a.cpp" int N,M; main() { cin>>N>>M; vector<pair<int,pair<int,int> > >A(N*M); for(int i=0;i<N;i++)for(int j=0;j<M;j++) { cin>>A[i*M+j].first; A[i*M+j].second=make_pair(i,j); } sort(A.begin(),A.end()); int ans=0; for(int i=0;i<A.size();) { if(A[i].first==0) { i++; continue; } int j=i; MF<int>P(N+M+2); while(j<A.size()&&A[i].first==A[j].first) { P.add_edge(A[j].second.first,A[j].second.second+N,1); j++; } for(int k=0;k<N;k++)P.add_edge(N+M,k,1); for(int k=0;k<M;k++)P.add_edge(k+N,N+M+1,1); i=j; ans+=P.max_flow(N+M,N+M+1); } cout<<ans<<endl; }