結果
問題 | No.421 しろくろチョコレート |
ユーザー | Grun1396 |
提出日時 | 2019-03-11 22:26:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 62 ms / 2,000 ms |
コード長 | 2,488 bytes |
コンパイル時間 | 639 ms |
コンパイル使用メモリ | 74,340 KB |
実行使用メモリ | 28,120 KB |
最終ジャッジ日時 | 2024-09-23 07:22:45 |
合計ジャッジ時間 | 3,932 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
27,844 KB |
testcase_01 | AC | 34 ms
27,896 KB |
testcase_02 | AC | 19 ms
27,960 KB |
testcase_03 | AC | 14 ms
27,716 KB |
testcase_04 | AC | 16 ms
27,840 KB |
testcase_05 | AC | 19 ms
27,848 KB |
testcase_06 | AC | 14 ms
27,840 KB |
testcase_07 | AC | 27 ms
27,832 KB |
testcase_08 | AC | 16 ms
27,844 KB |
testcase_09 | AC | 17 ms
27,848 KB |
testcase_10 | AC | 15 ms
27,760 KB |
testcase_11 | AC | 27 ms
27,844 KB |
testcase_12 | AC | 11 ms
27,716 KB |
testcase_13 | AC | 10 ms
27,608 KB |
testcase_14 | AC | 11 ms
27,716 KB |
testcase_15 | AC | 10 ms
27,736 KB |
testcase_16 | AC | 48 ms
28,004 KB |
testcase_17 | AC | 50 ms
27,944 KB |
testcase_18 | AC | 53 ms
27,960 KB |
testcase_19 | AC | 11 ms
27,696 KB |
testcase_20 | AC | 39 ms
27,924 KB |
testcase_21 | AC | 43 ms
27,972 KB |
testcase_22 | AC | 28 ms
27,804 KB |
testcase_23 | AC | 11 ms
27,844 KB |
testcase_24 | AC | 11 ms
27,668 KB |
testcase_25 | AC | 11 ms
27,820 KB |
testcase_26 | AC | 11 ms
27,748 KB |
testcase_27 | AC | 11 ms
27,716 KB |
testcase_28 | AC | 35 ms
27,876 KB |
testcase_29 | AC | 40 ms
27,972 KB |
testcase_30 | AC | 36 ms
27,876 KB |
testcase_31 | AC | 61 ms
28,100 KB |
testcase_32 | AC | 38 ms
27,716 KB |
testcase_33 | AC | 38 ms
27,904 KB |
testcase_34 | AC | 13 ms
27,972 KB |
testcase_35 | AC | 13 ms
27,848 KB |
testcase_36 | AC | 27 ms
27,788 KB |
testcase_37 | AC | 52 ms
27,844 KB |
testcase_38 | AC | 60 ms
27,972 KB |
testcase_39 | AC | 23 ms
27,860 KB |
testcase_40 | AC | 33 ms
28,000 KB |
testcase_41 | AC | 19 ms
27,844 KB |
testcase_42 | AC | 17 ms
27,904 KB |
testcase_43 | AC | 26 ms
27,840 KB |
testcase_44 | AC | 43 ms
27,844 KB |
testcase_45 | AC | 18 ms
27,796 KB |
testcase_46 | AC | 18 ms
27,844 KB |
testcase_47 | AC | 31 ms
27,828 KB |
testcase_48 | AC | 50 ms
28,120 KB |
testcase_49 | AC | 22 ms
27,844 KB |
testcase_50 | AC | 19 ms
27,848 KB |
testcase_51 | AC | 44 ms
27,932 KB |
testcase_52 | AC | 27 ms
27,844 KB |
testcase_53 | AC | 15 ms
27,892 KB |
testcase_54 | AC | 19 ms
27,808 KB |
testcase_55 | AC | 16 ms
27,944 KB |
testcase_56 | AC | 16 ms
27,760 KB |
testcase_57 | AC | 19 ms
27,720 KB |
testcase_58 | AC | 34 ms
27,968 KB |
testcase_59 | AC | 22 ms
27,844 KB |
testcase_60 | AC | 62 ms
27,976 KB |
testcase_61 | AC | 56 ms
28,100 KB |
testcase_62 | AC | 12 ms
27,720 KB |
testcase_63 | AC | 12 ms
27,744 KB |
testcase_64 | AC | 11 ms
27,844 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <cctype> #include <functional> #include <map> #include <cstring> using namespace std; typedef long long ll; #define reps(i,s,n) for(int (i) = (s); (i) < (n); (i)++) #define rep(i,n) reps(i,0,n) const int INF = 1e9; struct edge {int to,cap,rev;}; const int MAX_V = 1e6; vector<edge> G[MAX_V]; bool used[MAX_V]; void add_edge(int from,int to,int cap){ G[from].push_back({to,cap,(int)G[to].size()}); G[to].push_back({from,0,(int)G[from].size()-1}); } int dfs(int v,int t,int f){ if(v==t) return f; used[v] = true; rep(i,G[v].size()){ edge &e = G[v][i]; if(!used[e.to] && e.cap > 0){ int 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; } int max_flow(int s,int t){ int flow = 0; for(;;){ memset(used,0,sizeof(used)); int f = dfs(s,t,INF); if(f == 0) return flow; flow += f; } } int V,E; int f,to,c; int N,M; vector<string> vec; int main(){ int B=0,W=0; cin >> N >> M; vec.resize(N); rep(i,N) cin >> vec[i]; rep(i,N){ rep(j,M){ if(vec[i][j] == 'w'){ add_edge(10000,i*M+j ,1); W++; }else if(vec[i][j]=='b'){ add_edge(i*M+j,10001,1); B++; } } } rep(i,N) { rep(j,M){ if(vec[i][j] == 'w'){ if(i > 0){ if(vec[i-1][j] == 'b'){ add_edge(i*M+j,(i-1)*M+j ,1); } } if(i < N-1){ if(vec[i+1][j] == 'b'){ add_edge(i*M+j,(i+1)*M+j ,1); } } if(j > 0){ if(vec[i][j-1] == 'b'){ add_edge(i*M+j,i*M+j-1,1); } } if(j < M-1){ if(vec[i][j+1] == 'b'){ add_edge(i*M+j, i*M+j+1,1); } } } } } int total_f = max_flow(10000,10001); int ans = total_f*100; ans += min(B-total_f, W-total_f)*10; ans += (max(B-total_f, W-total_f) - min(B-total_f, W-total_f) ); cout << ans << endl; return 0; }