結果
問題 | No.957 植林 |
ユーザー | yakamoto |
提出日時 | 2019-12-26 17:38:35 |
言語 | Scala(Beta) (3.6.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 6,477 bytes |
コンパイル時間 | 15,844 ms |
コンパイル使用メモリ | 281,620 KB |
実行使用メモリ | 154,932 KB |
最終ジャッジ日時 | 2024-10-04 14:17:42 |
合計ジャッジ時間 | 43,319 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 913 ms
71,212 KB |
testcase_01 | AC | 803 ms
64,320 KB |
testcase_02 | AC | 891 ms
64,224 KB |
testcase_03 | AC | 1,631 ms
125,292 KB |
testcase_04 | AC | 1,553 ms
122,268 KB |
testcase_05 | AC | 1,610 ms
126,804 KB |
testcase_06 | AC | 1,611 ms
132,100 KB |
testcase_07 | AC | 1,619 ms
123,584 KB |
testcase_08 | AC | 1,473 ms
126,820 KB |
testcase_09 | AC | 1,495 ms
126,016 KB |
testcase_10 | AC | 1,500 ms
127,840 KB |
testcase_11 | AC | 1,568 ms
126,868 KB |
testcase_12 | AC | 1,521 ms
126,236 KB |
testcase_13 | AC | 1,442 ms
117,556 KB |
testcase_14 | AC | 1,524 ms
127,284 KB |
testcase_15 | AC | 1,508 ms
125,052 KB |
testcase_16 | AC | 1,418 ms
117,424 KB |
testcase_17 | AC | 1,467 ms
123,224 KB |
testcase_18 | TLE | - |
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 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
object Main { import java.io.{BufferedReader, InputStream, InputStreamReader} import java.util.StringTokenizer import scala.reflect.ClassTag def main(args: Array[String]): Unit = { val out = new java.io.PrintWriter(System.out) new Main(out, new InputReader(System.in)).solve() out.flush() } private[this] val oj = System.getenv("MY_DEBUG") == null def DEBUG(f: => Unit): Unit = { if (!oj){ f } } def debug(as: Array[Boolean]): Unit = if (!oj){ debug(as.map(x => if(x) "1" else "0").mkString) } def debug(as: Array[Int]): Unit = if (!oj){ debug(as.mkString(" ")) } def debug(as: Array[Long]): Unit =if (!oj){ debug(as.mkString(" ")) } def debugDim(m: Array[Array[Int]]): Unit = if (!oj){ REP(m.length) { i => debug(m(i)) } } def debugDimFlip(m: Array[Array[Long]]): Unit = if (!oj){ REP(m(0).length) { j => REP(m.length) { i => System.err.print(m(i)(j)) System.err.print(" ") } System.err.println() } } def debug(s: => String): Unit = { if (!oj){ System.err.println(s) } } def isDebug[A](debug: => A, online: => A): A = { if (oj) online else debug } class InputReader(val stream: InputStream) { private[this] val reader = new BufferedReader(new InputStreamReader(stream), 32768) private[this] var tokenizer: StringTokenizer = _ private[this] def next(): String = { while (tokenizer == null || !tokenizer.hasMoreTokens) tokenizer = new StringTokenizer(reader.readLine) tokenizer.nextToken } def nextInt(): Int = Integer.parseInt(next()) def nextLong(): Long = java.lang.Long.parseLong(next()) def nextChar(): Char = next().charAt(0) def ni(): Int = nextInt() def nl(): Long = nextLong() def nc(): Char = nextChar() def ns(): String = next() def ns(n: Int): Array[Char] = ns().toCharArray def na(n: Int, offset: Int = 0): Array[Int] = map(n)(_ => ni() + offset) def na2(n: Int, offset: Int = 0): (Array[Int], Array[Int]) = { val A1, A2 = Array.ofDim[Int](n) REP(n) { i => A1(i) = ni() + offset A2(i) = ni() + offset } (A1, A2) } def nm(n: Int, m: Int): Array[Array[Int]] = { val A = Array.ofDim[Int](n, m) REP(n) { i => REP(m) { j => A(i)(j) = ni() } } A } def nal(n: Int): Array[Long] = map(n)(_ => nl()) def nm_c(n: Int, m: Int): Array[Array[Char]] = map(n) (_ => ns(m)) } def REP(n: Int, offset: Int = 0)(f: Int => Unit): Unit = { var i = offset val N = n + offset while(i < N) { f(i); i += 1 } } def REP_r(n: Int, offset: Int = 0)(f: Int => Unit): Unit = { var i = n - 1 + offset while(i >= offset) { f(i); i -= 1 } } def TO(from: Int, to: Int)(f: Int => Unit): Unit = { REP(to - from + 1, from)(f) } def map[@specialized A: ClassTag](n: Int, offset: Int = 0)(f: Int => A): Array[A] = { val res = Array.ofDim[A](n) REP(n)(i => res(i) = f(i + offset)) res } def sumL(as: Array[Int]): Long = { var s = 0L REP(as.length)(i => s += as(i)) s } def cumSum(as: Array[Int]): Array[Long] = { val cum = Array.ofDim[Long](as.length + 1) REP(as.length) { i => cum(i + 1) = cum(i) + as(i) } cum } } object Workspace { import Main._ import java.util.Arrays.sort import scala.collection.mutable import math.{abs, max, min} import mutable.ArrayBuffer type A = Long type Graph = Array[ArrayBuffer[Edge]] case class Edge(v: Int, w: A) class Edge2(val to: Int, var cap: A, val rev: Int) def maxFlow(baseG: Graph, s: Int, t: Int, inf: A): A = { val n = baseG.length val level = Array.ofDim[Int](n) val iter = Array.ofDim[Int](n) val g = Array.fill[ArrayBuffer[Edge2]](n)(ArrayBuffer()) def addEdge(v: Int, e: Edge): Unit = { g(v) += new Edge2(e.v, e.w, g(e.v).size) g(e.v) += new Edge2(v, 0, g(v).size - 1) } REP(n) { v => REP(baseG(v).length) { j => addEdge(v, baseG(v)(j)) } } def bfs(s: Int): Unit = { val queue = new java.util.ArrayDeque[Int]() level(s) = 0 queue.add(s) while(!queue.isEmpty) { val v = queue.poll() REP(g(v).length) { i => val e = g(v)(i) if (e.cap > 0 && level(e.to) < 0) { level(e.to) = level(v) + 1 queue.add(e.to) } } } } def dfs(v: Int, t: Int, f: A): A = { if (v == t) { f } else { while(iter(v) < g(v).length) { val e = g(v)(iter(v)) if (e.cap > 0 && level(v) < level(e.to)) { val d = dfs(e.to, t, min(f, e.cap)) if (d > 0) { e.cap -= d g(e.to)(e.rev).cap += d return d } } iter(v) += 1 } 0 } } var flow: A = 0 var continues = true while(continues) { import java.util util.Arrays.fill(iter, 0) util.Arrays.fill(level, -1) bfs(s) debug(level) if (level(t) < 0) { continues = false } else { var f: A = 0 while({f = dfs(s, t, inf); f > 0}) { flow = min(inf, flow + f) } } } if (flow == inf) -1 else flow } } class Main(out: java.io.PrintWriter, sc: Main.InputReader) { import sc._ import Main._ import java.util.Arrays.sort import scala.collection.mutable import math.{abs, max, min} import mutable.ArrayBuffer import Workspace._ // toIntとか+7とかするならvalにしろ final private[this] val MOD = 1000000007 def solve(): Unit = { val H, W = ni() val G = nm(H, W) val R = na(H) val C = na(W) val g = Array.fill[ArrayBuffer[Edge]](H * W + H + W + 2)(ArrayBuffer()) val S = H * W + H + W val T = S + 1 val inf = 1e18.toLong REP(H) { h => REP(W) { w => val id = h * W + w g(S) += Edge(id, 0) g(id) += Edge(T, G(h)(w)) } } REP(H) { h => val node = H * W + h g(S) += Edge(node, R(h)) REP(W) { w => g(node) += Edge(h * W + w, inf) } } REP(W) { w => val node = H * W + H + w g(S) += Edge(node, C(w)) REP(H) { h => g(node) += Edge(h * W + w, inf) } } val cut = maxFlow(g, S, T, inf) debug(s"cut:$cut") val ans = max(0, sumL(R) + sumL(C) - cut) out.println(ans) } }