結果
問題 | No.421 しろくろチョコレート |
ユーザー | zdz |
提出日時 | 2024-12-21 15:19:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,090 bytes |
コンパイル時間 | 1,978 ms |
コンパイル使用メモリ | 166,796 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-21 15:20:04 |
合計ジャッジ時間 | 4,343 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
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 | 3 ms
5,248 KB |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | AC | 2 ms
5,248 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | AC | 2 ms
5,248 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 2 ms
5,248 KB |
testcase_45 | WA | - |
testcase_46 | AC | 3 ms
5,248 KB |
testcase_47 | WA | - |
testcase_48 | AC | 2 ms
5,248 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 2 ms
5,248 KB |
testcase_52 | WA | - |
testcase_53 | AC | 2 ms
5,248 KB |
testcase_54 | AC | 2 ms
5,248 KB |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | AC | 2 ms
5,248 KB |
testcase_63 | AC | 3 ms
5,248 KB |
testcase_64 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> #define ll long long using namespace std; int n,m; char a[60][60]; bool vis[60][60]; int x,y; int dx[4]={1,-1,0,0}; int dy[4]={0,0,1,-1}; int ans; void dfs(int i,int j) { vis[i][j]=1; if(a[i][j]=='w') { x++; for(int k=0;k<4;k++) { int xx=dx[k]+i,yy=dy[k]+j; if(!vis[xx][yy]&&a[xx][yy]=='b')dfs(xx,yy); } } else { y++; for(int k=0;k<4;k++) { int xx=dx[k]+i,yy=dy[k]+j; if(!vis[xx][yy]&&a[xx][yy]=='w')dfs(xx,yy); } } } int main() { cin>>n>>m; for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { cin>>a[i][j]; } } int xx=0,yy=0; for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { x=0;y=0; if(!vis[i][j]&&a[i][j]!='.')dfs(i,j); ans+=min(x,y)*100; if(x>y)xx+=x-y; else yy+=y-x; } } ans+=min(xx,yy)*10; ans+=max(xx,yy)-min(xx,yy); cout<<ans; return 0; }