結果
問題 | No.421 しろくろチョコレート |
ユーザー | vjudge1 |
提出日時 | 2024-12-22 16:55:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,230 bytes |
コンパイル時間 | 3,283 ms |
コンパイル使用メモリ | 160,636 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-22 16:55:43 |
合計ジャッジ時間 | 8,476 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | RE | - |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 1 ms
5,248 KB |
testcase_27 | AC | 1 ms
5,248 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | AC | 2 ms
5,248 KB |
testcase_42 | AC | 2 ms
5,248 KB |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | AC | 2 ms
5,248 KB |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | AC | 2 ms
5,248 KB |
testcase_56 | AC | 2 ms
5,248 KB |
testcase_57 | AC | 2 ms
5,248 KB |
testcase_58 | RE | - |
testcase_59 | AC | 2 ms
5,248 KB |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | AC | 2 ms
5,248 KB |
testcase_63 | AC | 2 ms
5,248 KB |
testcase_64 | AC | 1 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int maxn = 1005; vector<int> z[maxn]; int n1, n2, m, ans, N, M; void add_edge(int s,int e) { z[s].push_back(e); } bool vis[maxn]; char choco[105][105]; int result[maxn]; bool dfs(int i) { for (int k=0;k<z[i].size();k++) { int j = z[i][k]; if (!vis[j]) { vis[j] = true; if (!result[j] || dfs(result[j])) { result[j] = i; return true; } } } return false; } int zb(int x, int y) { return M*(x-1)+y; } int main() { cin >> N >> M; for (int i = 1;i <= N;i++) { for (int j = 1;j <= M;j++) { cin >> choco[i][j]; } } for (int i = 1;i <= N;i++) { for (int j = 1;j <= M;j++) { if(choco[i][j] == 'b') { n1++; if(choco[i][j+1]=='w') { add_edge(n1, zb(i, j+1)); } if(choco[i+1][j]=='w') { add_edge(n1, zb(i+1, j)); } if(choco[i][j-1]=='w') { add_edge(n1, zb(i, j-1)); } if(choco[i-1][j]=='w') { add_edge(n1, zb(i-1, j)); } } if(choco[i][j] == 'w') n2++; } } for (int i=1;i<=n1;i++) { memset(vis,false,sizeof(vis)); if (dfs(i)) ans++; } if(n1 > n2) cout << ans*100 + (n2-ans)*10 + n1-n2; if(n1 <= n2) cout << ans*100 + (n1-ans)*10 + n2-n1; }