結果
問題 | No.421 しろくろチョコレート |
ユーザー | uwi |
提出日時 | 2016-09-09 22:44:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 551 ms / 2,000 ms |
コード長 | 5,012 bytes |
コンパイル時間 | 4,156 ms |
コンパイル使用メモリ | 85,376 KB |
実行使用メモリ | 59,892 KB |
最終ジャッジ日時 | 2024-09-23 07:05:34 |
合計ジャッジ時間 | 18,887 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,388 KB |
testcase_01 | AC | 315 ms
58,876 KB |
testcase_02 | AC | 216 ms
58,792 KB |
testcase_03 | AC | 60 ms
49,888 KB |
testcase_04 | AC | 153 ms
55,928 KB |
testcase_05 | AC | 131 ms
53,040 KB |
testcase_06 | AC | 57 ms
50,272 KB |
testcase_07 | AC | 278 ms
54,592 KB |
testcase_08 | AC | 215 ms
58,648 KB |
testcase_09 | AC | 59 ms
50,072 KB |
testcase_10 | AC | 96 ms
51,720 KB |
testcase_11 | AC | 279 ms
54,496 KB |
testcase_12 | AC | 53 ms
49,772 KB |
testcase_13 | AC | 54 ms
50,168 KB |
testcase_14 | AC | 53 ms
50,084 KB |
testcase_15 | AC | 52 ms
49,736 KB |
testcase_16 | AC | 454 ms
58,840 KB |
testcase_17 | AC | 491 ms
59,040 KB |
testcase_18 | AC | 441 ms
58,724 KB |
testcase_19 | AC | 53 ms
50,240 KB |
testcase_20 | AC | 342 ms
56,724 KB |
testcase_21 | AC | 434 ms
59,508 KB |
testcase_22 | AC | 238 ms
53,616 KB |
testcase_23 | AC | 53 ms
50,200 KB |
testcase_24 | AC | 54 ms
50,340 KB |
testcase_25 | AC | 53 ms
50,184 KB |
testcase_26 | AC | 53 ms
50,260 KB |
testcase_27 | AC | 54 ms
49,736 KB |
testcase_28 | AC | 191 ms
58,484 KB |
testcase_29 | AC | 191 ms
58,576 KB |
testcase_30 | AC | 280 ms
58,652 KB |
testcase_31 | AC | 176 ms
57,896 KB |
testcase_32 | AC | 158 ms
58,424 KB |
testcase_33 | AC | 338 ms
59,172 KB |
testcase_34 | AC | 167 ms
58,444 KB |
testcase_35 | AC | 177 ms
58,480 KB |
testcase_36 | AC | 263 ms
56,352 KB |
testcase_37 | AC | 448 ms
59,796 KB |
testcase_38 | AC | 551 ms
59,892 KB |
testcase_39 | AC | 218 ms
56,040 KB |
testcase_40 | AC | 271 ms
54,352 KB |
testcase_41 | AC | 66 ms
50,572 KB |
testcase_42 | AC | 86 ms
50,940 KB |
testcase_43 | AC | 215 ms
56,180 KB |
testcase_44 | AC | 282 ms
56,900 KB |
testcase_45 | AC | 193 ms
54,012 KB |
testcase_46 | AC | 173 ms
53,756 KB |
testcase_47 | AC | 347 ms
56,292 KB |
testcase_48 | AC | 252 ms
59,184 KB |
testcase_49 | AC | 249 ms
58,684 KB |
testcase_50 | AC | 176 ms
55,720 KB |
testcase_51 | AC | 302 ms
56,736 KB |
testcase_52 | AC | 249 ms
54,236 KB |
testcase_53 | AC | 159 ms
53,100 KB |
testcase_54 | AC | 231 ms
58,600 KB |
testcase_55 | AC | 79 ms
50,960 KB |
testcase_56 | AC | 78 ms
51,072 KB |
testcase_57 | AC | 156 ms
53,616 KB |
testcase_58 | AC | 303 ms
55,932 KB |
testcase_59 | AC | 170 ms
53,496 KB |
testcase_60 | AC | 525 ms
58,788 KB |
testcase_61 | AC | 534 ms
59,592 KB |
testcase_62 | AC | 53 ms
50,088 KB |
testcase_63 | AC | 53 ms
50,216 KB |
testcase_64 | AC | 92 ms
55,988 KB |
ソースコード
package contest; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Arrays; import java.util.InputMismatchException; public class N421 { InputStream is; PrintWriter out; String INPUT = ""; void solve() { int n = ni(), m = ni(); char[][] map = nm(n,m); boolean[][] g = new boolean[n*m][n*m]; int[] dr = { 1, 0, -1, 0 }; int[] dc = { 0, 1, 0, -1 }; for(int i = 0;i < n;i++){ for(int j = 0;j < m;j++){ if((i+j) % 2 == 0 && map[i][j] == 'w'){ for(int k = 0;k < 4;k++){ int ni = i + dr[k], nj = j + dc[k]; if(ni >= 0 && ni < n && nj >= 0 && nj < m && map[ni][nj] == 'b'){ g[i*m+j][ni*m+nj] = true; } } } } } int mat = doBipartiteMatchingHK(g); int w = 0, b = 0; for(int i = 0;i < n;i++){ for(int j = 0;j < m;j++){ if(map[i][j] == 'w'){ w++; } if(map[i][j] == 'b'){ b++; } } } w -= mat; b -= mat; out.println(mat*100+Math.min(w, b)*10 + Math.max(w, b) - Math.min(w, b)); } public static int doBipartiteMatchingHK(boolean[][] g) { int n = g.length; if(n == 0)return 0; int m = g[0].length; int[] from = new int[m]; int[] to = new int[n]; Arrays.fill(to, -1); Arrays.fill(from, n); int[] d = new int[n+1]; int mat = 0; while(true){ Arrays.fill(d, -1); int[] q = new int[n]; int r = 0; for(int i = 0;i < n;i++){ if(to[i] == -1){ d[i] = 0; q[r++] = i; } } for(int p = 0;p < r;p++) { int cur = q[p]; for(int adj = 0;adj < m;adj++){ if(g[cur][adj]){ int nex = from[adj]; if(d[nex] == -1) { if(nex != n)q[r++] = nex; d[nex] = d[cur] + 1; } } } } if(d[n] == -1)break; for(int i = 0;i < n;i++){ if(to[i] == -1){ if(dfsHK(d, g, n, m, to, from, i))mat++; } } } return mat; } static boolean dfsHK(int[] d, boolean[][] g, int n, int m, int[] to, int[] from, int cur) { if(cur == n)return true; for(int adj = 0;adj < m;adj++){ if(g[cur][adj]){ int nex = from[adj]; if(d[nex] == d[cur] + 1 && dfsHK(d, g, n, m, to, from, nex)){ to[cur] = adj; from[adj] = cur; return true; } } } d[cur] = -1; return false; } void run() throws Exception { is = INPUT.isEmpty() ? System.in : new ByteArrayInputStream(INPUT.getBytes()); out = new PrintWriter(System.out); long s = System.currentTimeMillis(); solve(); out.flush(); if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms"); // Thread t = new Thread(null, null, "~", Runtime.getRuntime().maxMemory()){ // @Override // public void run() { // long s = System.currentTimeMillis(); // solve(); // out.flush(); // if(!INPUT.isEmpty())tr(System.currentTimeMillis()-s+"ms"); // } // }; // t.start(); // t.join(); } public static void main(String[] args) throws Exception { new N421().run(); } private byte[] inbuf = new byte[1024]; private int lenbuf = 0, ptrbuf = 0; private int readByte() { if(lenbuf == -1)throw new InputMismatchException(); if(ptrbuf >= lenbuf){ ptrbuf = 0; try { lenbuf = is.read(inbuf); } catch (IOException e) { throw new InputMismatchException(); } if(lenbuf <= 0)return -1; } return inbuf[ptrbuf++]; } private boolean isSpaceChar(int c) { return !(c >= 33 && c <= 126); } private int skip() { int b; while((b = readByte()) != -1 && isSpaceChar(b)); return b; } private double nd() { return Double.parseDouble(ns()); } private char nc() { return (char)skip(); } private String ns() { int b = skip(); StringBuilder sb = new StringBuilder(); while(!(isSpaceChar(b))){ // when nextLine, (isSpaceChar(b) && b != ' ') sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } private char[] ns(int n) { char[] buf = new char[n]; int b = skip(), p = 0; while(p < n && !(isSpaceChar(b))){ buf[p++] = (char)b; b = readByte(); } return n == p ? buf : Arrays.copyOf(buf, p); } private int[] na(int n) { int[] a = new int[n]; for(int i = 0;i < n;i++)a[i] = ni(); return a; } private long[] nal(int n) { long[] a = new long[n]; for(int i = 0;i < n;i++)a[i] = nl(); return a; } private char[][] nm(int n, int m) { char[][] map = new char[n][]; for(int i = 0;i < n;i++)map[i] = ns(m); return map; } private int[][] nmi(int n, int m) { int[][] map = new int[n][]; for(int i = 0;i < n;i++)map[i] = na(m); return map; } private int ni() { return (int)nl(); } private long nl() { long num = 0; int b; boolean minus = false; while((b = readByte()) != -1 && !((b >= '0' && b <= '9') || b == '-')); if(b == '-'){ minus = true; b = readByte(); } while(true){ if(b >= '0' && b <= '9'){ num = num * 10 + (b - '0'); }else{ return minus ? -num : num; } b = readByte(); } } private static void tr(Object... o) { System.out.println(Arrays.deepToString(o)); } }