結果
問題 | No.421 しろくろチョコレート |
ユーザー | kuuso1 |
提出日時 | 2016-09-10 00:30:48 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,373 bytes |
コンパイル時間 | 3,553 ms |
コンパイル使用メモリ | 115,252 KB |
実行使用メモリ | 49,140 KB |
最終ジャッジ日時 | 2024-11-16 19:06:17 |
合計ジャッジ時間 | 31,633 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
23,296 KB |
testcase_01 | WA | - |
testcase_02 | AC | 29 ms
23,552 KB |
testcase_03 | WA | - |
testcase_04 | AC | 30 ms
23,424 KB |
testcase_05 | WA | - |
testcase_06 | AC | 29 ms
32,964 KB |
testcase_07 | WA | - |
testcase_08 | AC | 29 ms
23,424 KB |
testcase_09 | AC | 29 ms
32,916 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 28 ms
23,424 KB |
testcase_13 | AC | 28 ms
35,456 KB |
testcase_14 | AC | 28 ms
30,928 KB |
testcase_15 | AC | 27 ms
23,168 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 28 ms
17,536 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 28 ms
17,920 KB |
testcase_24 | AC | 28 ms
17,920 KB |
testcase_25 | AC | 28 ms
17,920 KB |
testcase_26 | AC | 27 ms
18,048 KB |
testcase_27 | AC | 28 ms
17,920 KB |
testcase_28 | AC | 58 ms
18,304 KB |
testcase_29 | AC | 32 ms
18,016 KB |
testcase_30 | AC | 31 ms
18,432 KB |
testcase_31 | TLE | - |
testcase_32 | AC | 36 ms
18,260 KB |
testcase_33 | WA | - |
testcase_34 | AC | 29 ms
18,176 KB |
testcase_35 | AC | 28 ms
18,176 KB |
testcase_36 | WA | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | WA | - |
testcase_40 | TLE | - |
testcase_41 | AC | 28 ms
18,176 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | TLE | - |
testcase_45 | WA | - |
testcase_46 | AC | 29 ms
18,176 KB |
testcase_47 | WA | - |
testcase_48 | TLE | - |
testcase_49 | AC | 31 ms
22,196 KB |
testcase_50 | AC | 30 ms
17,920 KB |
testcase_51 | TLE | - |
testcase_52 | WA | - |
testcase_53 | AC | 28 ms
18,176 KB |
testcase_54 | AC | 29 ms
18,156 KB |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | TLE | - |
testcase_61 | TLE | - |
testcase_62 | AC | 28 ms
22,068 KB |
testcase_63 | AC | 28 ms
18,048 KB |
testcase_64 | AC | 28 ms
23,040 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; class TEST{ static void Main(){ Sol mySol =new Sol(); mySol.Solve(); } } class Sol{ public void Solve(){ int V = N*M+2; int src = N*M; int sink = src+1; var Gr = new MaxFlow_Dinic(); Gr.Init(V); int b = 0; int w = 0; int[] dx = new int[]{1,0,-1,0}; int[] dy = new int[]{0,-1,0,1}; Func<int,int,bool> InRange = (y,x) =>{ return 0<= x && x < M && 0<= y && y < N; }; for(int i=0;i<N;i++){ for(int j=0;j<M;j++){ if(S[i][j] == 'b'){ b++; Gr.AddEdge(src,i*M+j,1); for(int t=0;t<4;t++){ int nx = j + dx[t]; int ny = i + dy[t]; if(!InRange(ny,nx))continue; if(S[ny][nx] == 'w'){ Gr.AddEdge(i*M+j,ny*M+nx,1); } } } if(S[i][j] == 'w'){ w++; Gr.AddEdge(i*M+j,sink,1); } } } int bw = Gr.MaxFlow(src,sink); int ans = bw * 100; b -= bw; w -= bw; int bws = Math.Min(b,w); ans += bws * 10; b -= bws; w -= bws; ans += b; ans += w; Console.WriteLine(ans); } int N,M; String[] S; public Sol(){ var d = ria(); N = d[0]; M = d[1]; S = new String[N]; for(int i=0;i<N;i++)S[i] = rs(); } static String rs(){return Console.ReadLine();} static int ri(){return int.Parse(Console.ReadLine());} static long rl(){return long.Parse(Console.ReadLine());} static double rd(){return double.Parse(Console.ReadLine());} static String[] rsa(char sep=' '){return Console.ReadLine().Split(sep);} static int[] ria(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>int.Parse(e));} static long[] rla(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>long.Parse(e));} static double[] rda(char sep=' '){return Array.ConvertAll(Console.ReadLine().Split(sep),e=>double.Parse(e));} } class MaxFlow_Dinic{ // arihon is god class Edge { public int To,Cap,Rev; public Edge(int to = 0,int cap = 0,int rev = 0){ To = to; Cap = cap; Rev = rev; } } List<Edge>[] G; int[] Level; int[] Iter; static int Inf = (int) 1e9; public int N; public void Init(int n){ N = n; G = new List<Edge>[N]; for(int i=0;i<N;i++) G[i] = new List<Edge>(); Level = new int[N]; Iter = new int[N]; } public void AddEdge(int from, int to, int cap){ G[from].Add(new Edge(to,cap,G[to].Count)); G[to].Add(new Edge(from,cap,G[from].Count-1)); } void bfs(int s){ for(int j=0;j<G.Length;j++)Level[j] = -1; var Q = new Queue<int>(); Level[s] = 0; Q.Enqueue(s); while(Q.Count>0){ var v = Q.Dequeue(); foreach(var e in G[v]){ //Console.WriteLine(e.Cap +" "+Level[e.To]); if(e.Cap > 0 && Level[e.To] < 0){ Level[e.To] = Level[v] + 1; Q.Enqueue(e.To); } } } } int dfs(int v,int t,int f){ if(v == t) return f; for(int i = Iter[v]; i<G[v].Count;i++){ var e = G[v][i]; if(e.Cap > 0 && Level[v] < Level[e.To]){ int d = dfs(e.To,t,Math.Min(f,e.Cap)); if(d > 0){ e.Cap -= d; G[e.To][e.Rev].Cap += d; return d; } } } return 0; } public int MaxFlow(int s,int t){ int flow = 0; while(true){ bfs(s); //Console.WriteLine(Level[t]); if(Level[t] < 0) return flow; Iter = new int[N]; int f; while( ( f = dfs(s,t,Inf)) > 0){ flow += f; } } } }