結果
問題 | No.421 しろくろチョコレート |
ユーザー | Grenache |
提出日時 | 2016-09-11 20:16:52 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 139 ms / 2,000 ms |
コード長 | 7,345 bytes |
コンパイル時間 | 3,907 ms |
コンパイル使用メモリ | 85,144 KB |
実行使用メモリ | 55,600 KB |
最終ジャッジ日時 | 2024-09-23 07:08:49 |
合計ジャッジ時間 | 10,905 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,480 KB |
testcase_01 | AC | 107 ms
52,360 KB |
testcase_02 | AC | 66 ms
50,748 KB |
testcase_03 | AC | 57 ms
50,508 KB |
testcase_04 | AC | 65 ms
50,800 KB |
testcase_05 | AC | 70 ms
51,092 KB |
testcase_06 | AC | 57 ms
50,436 KB |
testcase_07 | AC | 98 ms
52,192 KB |
testcase_08 | AC | 67 ms
50,572 KB |
testcase_09 | AC | 60 ms
50,532 KB |
testcase_10 | AC | 61 ms
50,176 KB |
testcase_11 | AC | 101 ms
51,592 KB |
testcase_12 | AC | 54 ms
50,180 KB |
testcase_13 | AC | 54 ms
50,124 KB |
testcase_14 | AC | 54 ms
50,448 KB |
testcase_15 | AC | 54 ms
50,180 KB |
testcase_16 | AC | 120 ms
52,544 KB |
testcase_17 | AC | 125 ms
55,080 KB |
testcase_18 | AC | 125 ms
55,464 KB |
testcase_19 | AC | 54 ms
50,360 KB |
testcase_20 | AC | 115 ms
52,628 KB |
testcase_21 | AC | 116 ms
52,328 KB |
testcase_22 | AC | 88 ms
51,284 KB |
testcase_23 | AC | 56 ms
50,452 KB |
testcase_24 | AC | 55 ms
50,528 KB |
testcase_25 | AC | 55 ms
50,476 KB |
testcase_26 | AC | 54 ms
50,436 KB |
testcase_27 | AC | 55 ms
50,168 KB |
testcase_28 | AC | 74 ms
51,140 KB |
testcase_29 | AC | 91 ms
51,184 KB |
testcase_30 | AC | 93 ms
51,352 KB |
testcase_31 | AC | 85 ms
51,120 KB |
testcase_32 | AC | 91 ms
51,584 KB |
testcase_33 | AC | 111 ms
52,600 KB |
testcase_34 | AC | 61 ms
50,076 KB |
testcase_35 | AC | 63 ms
50,512 KB |
testcase_36 | AC | 90 ms
51,160 KB |
testcase_37 | AC | 119 ms
53,396 KB |
testcase_38 | AC | 134 ms
55,424 KB |
testcase_39 | AC | 90 ms
50,936 KB |
testcase_40 | AC | 107 ms
52,372 KB |
testcase_41 | AC | 63 ms
50,544 KB |
testcase_42 | AC | 63 ms
50,660 KB |
testcase_43 | AC | 78 ms
50,696 KB |
testcase_44 | AC | 119 ms
52,568 KB |
testcase_45 | AC | 64 ms
50,184 KB |
testcase_46 | AC | 67 ms
50,232 KB |
testcase_47 | AC | 107 ms
52,260 KB |
testcase_48 | AC | 111 ms
52,308 KB |
testcase_49 | AC | 84 ms
50,740 KB |
testcase_50 | AC | 69 ms
50,964 KB |
testcase_51 | AC | 120 ms
52,564 KB |
testcase_52 | AC | 88 ms
50,880 KB |
testcase_53 | AC | 60 ms
50,160 KB |
testcase_54 | AC | 67 ms
50,592 KB |
testcase_55 | AC | 61 ms
50,220 KB |
testcase_56 | AC | 60 ms
50,048 KB |
testcase_57 | AC | 68 ms
50,632 KB |
testcase_58 | AC | 113 ms
52,568 KB |
testcase_59 | AC | 83 ms
51,196 KB |
testcase_60 | AC | 139 ms
55,600 KB |
testcase_61 | AC | 124 ms
54,764 KB |
testcase_62 | AC | 54 ms
50,420 KB |
testcase_63 | AC | 56 ms
50,172 KB |
testcase_64 | AC | 59 ms
50,448 KB |
ソースコード
import java.io.*; import java.util.*; public class Main_yukicoder421 { private static Scanner sc; private static Printer pr; private static void solve() { int n = sc.nextInt(); int m = sc.nextInt(); int white = 0; int black = 0; char[][] s = new char[n][]; for (int i = 0; i < n; i++) { s[i] = sc.next().toCharArray(); for (char c : s[i]) { if (c == 'w') { white++; } else if (c == 'b') { black++; } } } Dinic di = new Dinic(n * m + 2); int source = n * m; int sink = source + 1; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (s[i][j] == 'w') { di.addEdge(source, i * m + j, 1); if (i > 0 && s[i - 1][j] == 'b') { di.addEdge(i * m + j, (i - 1) * m + j, 1); } if (i < n - 1 && s[i + 1][j] == 'b') { di.addEdge(i * m + j, (i + 1) * m + j, 1); } if (j > 0 && s[i][j - 1] == 'b') { di.addEdge(i * m + j, i * m + j - 1, 1); } if (j < m - 1 && s[i][j + 1] == 'b') { di.addEdge(i * m + j, i * m + j + 1, 1); } } else if (s[i][j] == 'b') { di.addEdge(i * m + j, sink, 1); } } } int p1 = Math.abs(white - black); int p3 = di.getMaxflow(source, sink); int p2 = Math.max(white, black) - p1 - p3; pr.println(p3 * 100 + p2 * 10 + p1); } private static class Dinic { private static final int INF = Integer.MAX_VALUE; ArrayList<Edge>[] edges; int n; @SuppressWarnings("unchecked") Dinic(int n) { this.n = n; edges = new ArrayList[n]; for (int ii = 0; ii < n; ii++) { edges[ii] = new ArrayList<Edge>(); } checkedTo = new int[this.n]; level = new int[this.n]; } // i, j:0-indexed public void addEdge(int i, int j, int c) { edges[i].add(new Edge(j, c, edges[j].size(), false)); // add reverse edge edges[j].add(new Edge(i, c, edges[i].size() - 1, true)); } public int getMaxflow(int s, int t) { // initialize flow for (int i = 0; i < edges.length; i++) { for (Edge e : edges[i]) { if (!e.revFlag) { e.f = 0; } else { e.f = e.w; } } } int ret = 0; while (true) { Arrays.fill(level, -1); bfs(s); if (level[t] == -1) { break; } Arrays.fill(checkedTo, 0); int augmentation; while ((augmentation = dfs(s, t, INF)) > 0) { ret += augmentation; } } return ret; } private static int[] checkedTo; private static int[] level; // no capacity edges must be removed private void bfs(int s) { Queue<Integer> q = new ArrayDeque<Integer>(); level[s] = 0; q.add(s); while (!q.isEmpty()) { int u = q.remove(); for (Edge e : edges[u]) { if (level[e.v] == -1 && e.w - e.f > 0) { level[e.v] = level[u] + 1; q.add(e.v); } } } } // find max flow (less than f), on u -> v path // next vertex must has larger level private int dfs(int u, int v, int f) { if (u == v) { return f; } for (; checkedTo[u] < edges[u].size(); checkedTo[u]++) { Edge e = edges[u].get(checkedTo[u]); if (level[e.v] > level[u] && e.w - e.f > 0) { int a = dfs(e.v, v, Math.min(f, e.w - e.f)); if (a != 0) { e.f += a; edges[e.v].get(e.revIndex).f -= a; return a; } } } return 0; } private static class Edge { // int u; // from int v; // to int w; // cost int f; // flow int revIndex; // index of reverse edge boolean revFlag; // flag of reverse edge Edge(int v, int w, int re, boolean f) { // this.u = u; this.v = v; this.w = w; this.f = 0; this.revIndex = re; this.revFlag = f; } } } // --------------------------------------------------- public static void main(String[] args) { sc = new Scanner(System.in); pr = new Printer(System.out); solve(); pr.close(); sc.close(); } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } private boolean isPrintable(int ch) { return ch >= '!' && ch <= '~'; } private boolean isCRLF(int ch) { return ch == '\n' || ch == '\r' || ch == -1; } private int nextPrintable() { try { int ch; while (!isPrintable(ch = br.read())) { if (ch == -1) { throw new NoSuchElementException(); } } return ch; } catch (IOException e) { throw new NoSuchElementException(); } } String next() { try { int ch = nextPrintable(); StringBuilder sb = new StringBuilder(); do { sb.appendCodePoint(ch); } while (isPrintable(ch = br.read())); return sb.toString(); } catch (IOException e) { throw new NoSuchElementException(); } } int nextInt() { try { // parseInt from Integer.parseInt() boolean negative = false; int res = 0; int limit = -Integer.MAX_VALUE; int radix = 10; int fc = nextPrintable(); if (fc < '0') { if (fc == '-') { negative = true; limit = Integer.MIN_VALUE; } else if (fc != '+') { throw new NumberFormatException(); } fc = br.read(); } int multmin = limit / radix; int ch = fc; do { int digit = ch - '0'; if (digit < 0 || digit >= radix) { throw new NumberFormatException(); } if (res < multmin) { throw new NumberFormatException(); } res *= radix; if (res < limit + digit) { throw new NumberFormatException(); } res -= digit; } while (isPrintable(ch = br.read())); return negative ? res : -res; } catch (IOException e) { throw new NoSuchElementException(); } } long nextLong() { try { // parseLong from Long.parseLong() boolean negative = false; long res = 0; long limit = -Long.MAX_VALUE; int radix = 10; int fc = nextPrintable(); if (fc < '0') { if (fc == '-') { negative = true; limit = Long.MIN_VALUE; } else if (fc != '+') { throw new NumberFormatException(); } fc = br.read(); } long multmin = limit / radix; int ch = fc; do { int digit = ch - '0'; if (digit < 0 || digit >= radix) { throw new NumberFormatException(); } if (res < multmin) { throw new NumberFormatException(); } res *= radix; if (res < limit + digit) { throw new NumberFormatException(); } res -= digit; } while (isPrintable(ch = br.read())); return negative ? res : -res; } catch (IOException e) { throw new NoSuchElementException(); } } float nextFloat() { return Float.parseFloat(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { try { int ch; while (isCRLF(ch = br.read())) { if (ch == -1) { throw new NoSuchElementException(); } } StringBuilder sb = new StringBuilder(); do { sb.appendCodePoint(ch); } while (!isCRLF(ch = br.read())); return sb.toString(); } catch (IOException e) { throw new NoSuchElementException(); } } void close() { try { br.close(); } catch (IOException e) { // throw new NoSuchElementException(); } } } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }