結果
問題 | No.421 しろくろチョコレート |
ユーザー | vjudge1 |
提出日時 | 2024-12-22 16:52:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,182 bytes |
コンパイル時間 | 2,258 ms |
コンパイル使用メモリ | 177,288 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-22 16:53:02 |
合計ジャッジ時間 | 3,799 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | AC | 3 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 3 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 | 3 ms
5,248 KB |
testcase_25 | AC | 3 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 3 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | WA | - |
testcase_31 | AC | 3 ms
5,248 KB |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | AC | 3 ms
5,248 KB |
testcase_35 | AC | 3 ms
5,248 KB |
testcase_36 | AC | 3 ms
5,248 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 3 ms
5,248 KB |
testcase_40 | WA | - |
testcase_41 | AC | 3 ms
5,248 KB |
testcase_42 | AC | 3 ms
5,248 KB |
testcase_43 | AC | 3 ms
5,248 KB |
testcase_44 | WA | - |
testcase_45 | AC | 3 ms
5,248 KB |
testcase_46 | AC | 3 ms
5,248 KB |
testcase_47 | AC | 3 ms
5,248 KB |
testcase_48 | WA | - |
testcase_49 | AC | 2 ms
5,248 KB |
testcase_50 | AC | 3 ms
5,248 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 2 ms
5,248 KB |
testcase_54 | AC | 3 ms
5,248 KB |
testcase_55 | AC | 3 ms
5,248 KB |
testcase_56 | AC | 2 ms
5,248 KB |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | AC | 3 ms
5,248 KB |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | AC | 3 ms
5,248 KB |
testcase_63 | AC | 2 ms
5,248 KB |
testcase_64 | AC | 2 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> #define int long long using namespace std; struct node{ int to,next; }a[200010]; int head[200010],in[10010],cnt,ans,x,y; bool f[10010]; char c[1010][1010]; queue<int> q; priority_queue<pair<int,int> > que; void add(int u,int v) { a[++cnt].to=v; a[cnt].next=head[u]; head[u]=cnt; } void add_edge(int u,int v) { in[u]++; in[v]++; //cout<<u<<" "<<v<<endl; add(u,v); add(v,u); } void clear(int x) { for(int i=head[x];i;i=a[i].next) { int v=a[i].to; if(in[v]!=0) in[v]--; if(in[v]==1) q.push(v); } } void pop(int x) { for(int i=head[x];i;i=a[i].next) { int v=a[i].to; if(in[v]!=0) in[v]--; if(in[v]!=0) que.push({-in[v],v}); } } signed main() { int n,m,k; cin>>n>>m; for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { cin>>c[i][j]; if(c[i][j]=='w') x++; else if(c[i][j]=='b') y++; } } for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { if(i+1<=n&&c[i+1][j]!='.'&&c[i][j]!='.'&&c[i+1][j]!=c[i][j]) add_edge((i-1)*m+j,i*m+j);//,cout<<i<<" "<<j<<" "<<i+1<<" "<<j<<" "<<(i-1)*n+j<<" "<<i*n+j<<endl; if(j+1<=m&&c[i][j+1]!='.'&&c[i][j]!='.'&&c[i][j]!=c[i][j+1]) add_edge((i-1)*m+j,(i-1)*m+j+1);//,cout<<i<<" "<<j<<" "<<i<<" "<<j+1<<" "<<(i-1)*n+j<<" "<<(i-1)*n+j+1<<endl; } } for(int i=1;i<=n*m;i++) { if(in[i]==1) q.push(i); } while(!q.empty()) { int u=q.front(); q.pop(); if(!in[u]) continue; for(int i=head[u];i;i=a[i].next) { int v=a[i].to; if(!in[v]) continue; in[u]=in[v]=0; clear(u); clear(v); ans+=100; x--; y--; break; } //cout<<ans<<" "<<x<<" "<<y<<endl; } for(int i=1;i<=n*m;i++) { if(in[i]>1) { que.push({0,i}); while(!que.empty()) { int u=que.top().second; que.pop(); if(!in[u]) continue; for(int i=head[u];i;i=a[i].next) { int v=a[i].to; //cout<<i<<" "<<u<<" "<<v<<endl; if(!in[v]) continue; in[v]=in[u]=0; pop(u); pop(v); ans+=100; x--; y--; break; } //cout<<ans<<" "<<x<<" "<<y<<endl; } } } //cout<<min(x,y)<<" "<<max(x,y)<<endl; ans+=min(x,y)*10+max(x,y)-min(x,y); cout<<ans<<endl; return 0; }