結果
問題 | No.1479 Matrix Eraser |
ユーザー | さかぽん |
提出日時 | 2021-05-14 21:36:32 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,998 bytes |
コンパイル時間 | 2,609 ms |
コンパイル使用メモリ | 109,696 KB |
実行使用メモリ | 144,516 KB |
最終ジャッジ日時 | 2024-10-02 00:49:28 |
合計ジャッジ時間 | 9,078 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
24,448 KB |
testcase_01 | AC | 36 ms
19,456 KB |
testcase_02 | AC | 36 ms
19,584 KB |
testcase_03 | AC | 33 ms
19,328 KB |
testcase_04 | AC | 31 ms
19,456 KB |
testcase_05 | AC | 31 ms
19,584 KB |
testcase_06 | AC | 31 ms
19,328 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
コンパイルメッセージ
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.Generic; using System.Linq; class D { static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse); static (int, int) Read2() { var a = Read(); return (a[0], a[1]); } static void Main() { var (h, w) = Read2(); var a = Array.ConvertAll(new bool[h], _ => Read()); var sv = h + w; var ev = sv + 1; var es = new List<long[]>(); es.AddRange(Enumerable.Range(0, h).Select(i => new[] { sv, i, 1L })); es.AddRange(Enumerable.Range(0, w).Select(j => new[] { h + j, ev, 1L })); var d = new Dictionary<int, List<long[]>>(); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { var k = a[i][j]; if (k == 0) continue; if (!d.ContainsKey(k)) d[k] = new List<long[]>(); d[k].Add(new[] { i, h + j, 1L }); } } var r = 0L; foreach (var es2 in d.Values) { es2.AddRange(es); r += MaxFlow(ev, sv, ev, es2.ToArray()); } Console.WriteLine(r); } static long MaxFlow(int n, int sv, int ev, long[][] dg) { var map = Array.ConvertAll(new int[n + 1], _ => new List<long[]>()); foreach (var e in dg) { map[e[0]].Add(new[] { e[0], e[1], e[2], map[e[1]].Count }); map[e[1]].Add(new[] { e[1], e[0], 0, map[e[0]].Count - 1 }); } long M = 0, t; while ((t = Bfs(n, sv, ev, map)) > 0) M += t; return M; } static long Bfs(int n, int sv, int ev, List<long[]>[] map) { var from = new long[n + 1][]; var minFlow = Enumerable.Repeat(long.MaxValue, n + 1).ToArray(); var q = new Queue<long>(); q.Enqueue(sv); while (q.Any()) { var v = q.Dequeue(); if (v == ev) break; foreach (var e in map[v]) { if (from[e[1]] != null || e[2] == 0) continue; from[e[1]] = e; minFlow[e[1]] = Math.Min(minFlow[v], e[2]); q.Enqueue(e[1]); } } if (from[ev] == null) return 0; for (long v = ev; v != sv; v = from[v][0]) { var e = from[v]; e[2] -= minFlow[ev]; map[e[1]][(int)e[3]][2] += minFlow[ev]; } return minFlow[ev]; } }