結果

問題 No.1041 直線大学
ユーザー yakamotoyakamoto
提出日時 2020-05-01 21:33:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 2,998 bytes
コンパイル時間 18,598 ms
コンパイル使用メモリ 472,192 KB
実行使用メモリ 52,192 KB
最終ジャッジ日時 2024-11-16 07:49:32
合計ジャッジ時間 33,433 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
51,288 KB
testcase_01 AC 323 ms
51,236 KB
testcase_02 AC 323 ms
51,240 KB
testcase_03 AC 318 ms
51,428 KB
testcase_04 AC 332 ms
51,192 KB
testcase_05 AC 323 ms
51,228 KB
testcase_06 AC 319 ms
51,148 KB
testcase_07 AC 332 ms
51,184 KB
testcase_08 AC 329 ms
51,352 KB
testcase_09 AC 331 ms
51,084 KB
testcase_10 AC 366 ms
51,680 KB
testcase_11 AC 347 ms
51,584 KB
testcase_12 AC 347 ms
51,824 KB
testcase_13 AC 327 ms
51,248 KB
testcase_14 AC 351 ms
51,880 KB
testcase_15 AC 331 ms
51,420 KB
testcase_16 AC 335 ms
51,768 KB
testcase_17 AC 326 ms
51,232 KB
testcase_18 AC 330 ms
51,496 KB
testcase_19 AC 332 ms
51,556 KB
testcase_20 AC 324 ms
51,260 KB
testcase_21 AC 332 ms
51,528 KB
testcase_22 AC 320 ms
51,068 KB
testcase_23 AC 358 ms
52,168 KB
testcase_24 AC 344 ms
51,888 KB
testcase_25 AC 331 ms
51,392 KB
testcase_26 AC 320 ms
51,140 KB
testcase_27 AC 324 ms
51,380 KB
testcase_28 AC 318 ms
51,008 KB
testcase_29 AC 314 ms
51,312 KB
testcase_30 AC 319 ms
51,152 KB
testcase_31 AC 325 ms
51,216 KB
testcase_32 AC 336 ms
51,296 KB
testcase_33 AC 336 ms
51,188 KB
testcase_34 AC 318 ms
51,256 KB
testcase_35 AC 317 ms
51,060 KB
testcase_36 AC 315 ms
51,244 KB
testcase_37 AC 323 ms
51,052 KB
testcase_38 AC 365 ms
52,192 KB
testcase_39 AC 325 ms
51,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:37:38: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
      ans = max(ans, cnt.values.max()!!)
                                     ^

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStream
import java.io.InputStreamReader
import java.util.*
import kotlin.math.abs
import kotlin.math.max
import kotlin.math.min

tailrec fun gcd(a: Int, b: Int): Int {
  if (a < b) return gcd(b, a)
  if (b == 0) return a
  return gcd(b, a % b)
}
data class Entry(val x: Int, val y: Int)
class Solver(stream: InputStream, private val out: java.io.PrintWriter) {
  fun solve() {
    val N = ni()
    val (X, Y) = na2(N)
    var ans = 0
    for (i in 0 until N) {
      val cnt = mutableMapOf<Entry, Int>()
      for (j in 0 until N) {
        if (i == j) continue
        val x = X[j] - X[i]
        val y = Y[j] - Y[i]
        val e = if (x == 0) {
          Entry(0, 1)
        } else if (y == 0) {
          Entry(1, 0)
        } else {
          val g = gcd(abs(x), abs(y))
          if (x > 0) Entry(x / g, y / g) else Entry(-x / g, -y / g)
        }
        cnt.merge(e, 1, Int::plus)
      }
      debug{cnt.toString()}
      ans = max(ans, cnt.values.max()!!)
    }
    out.println(ans + 1)
  }













































  private val isDebug = try {
    // なんか本番でエラーでる
    System.getenv("MY_DEBUG") != null
  } catch (t: Throwable) {
    false
  }

  private var tokenizer: StringTokenizer? = null
  private val reader = BufferedReader(InputStreamReader(stream), 32768)
  private fun next(): String {
    while (tokenizer == null || !tokenizer!!.hasMoreTokens()) {
      tokenizer = StringTokenizer(reader.readLine())
    }
    return tokenizer!!.nextToken()
  }

  private fun ni() = next().toInt()
  private fun nl() = next().toLong()
  private fun ns() = next()
  private fun na(n: Int, offset: Int = 0): IntArray {
    return map(n) { ni() + offset }
  }
  private fun nal(n: Int, offset: Int = 0): LongArray {
    val res = LongArray(n)
    for (i in 0 until n) {
      res[i] = nl() + offset
    }
    return res
  }

  private fun na2(n: Int, offset: Int = 0): Array<IntArray> {
    val a  = Array(2){IntArray(n)}
    for (i in 0 until n) {
      for (e in a) {
        e[i] = ni() + offset
      }
    }
    return a
  }

  private inline fun map(n: Int, f: (Int) -> Int): IntArray {
    val res = IntArray(n)
    for (i in 0 until n) {
      res[i] = f(i)
    }
    return res
  }

  private inline fun debug(msg: () -> String) {
    if (isDebug) System.err.println(msg())
  }

  private fun debug(a: LongArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: IntArray) {
    debug { a.joinToString(" ") }
  }

  private fun debug(a: BooleanArray) {
    debug { a.map { if (it) 1 else 0 }.joinToString("") }
  }

  private fun debugDim(A: Array<IntArray>) {
    if (isDebug) {
      for (a in A) {
        debug(a)
      }
    }
  }

  /**
   * 勝手にimport消されるのを防ぎたい
   */
  private fun hoge() {
    min(1, 2)
    max(1, 2)
    abs(-10)
  }
}

fun main() {
  val out = java.io.PrintWriter(System.out)
  Solver(System.`in`, out).solve()
  out.flush()
}
0