結果

問題 No.1041 直線大学
ユーザー yakamotoyakamoto
提出日時 2020-05-01 21:33:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 2,998 bytes
コンパイル時間 18,131 ms
コンパイル使用メモリ 437,488 KB
実行使用メモリ 53,300 KB
最終ジャッジ日時 2023-08-26 07:07:42
合計ジャッジ時間 32,063 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
52,944 KB
testcase_01 AC 291 ms
53,076 KB
testcase_02 AC 291 ms
52,624 KB
testcase_03 AC 298 ms
52,744 KB
testcase_04 AC 300 ms
52,836 KB
testcase_05 AC 297 ms
52,720 KB
testcase_06 AC 293 ms
52,916 KB
testcase_07 AC 299 ms
53,008 KB
testcase_08 AC 302 ms
52,788 KB
testcase_09 AC 302 ms
52,852 KB
testcase_10 AC 318 ms
52,996 KB
testcase_11 AC 318 ms
52,948 KB
testcase_12 AC 317 ms
53,240 KB
testcase_13 AC 298 ms
52,676 KB
testcase_14 AC 323 ms
52,876 KB
testcase_15 AC 298 ms
52,804 KB
testcase_16 AC 302 ms
52,836 KB
testcase_17 AC 294 ms
52,696 KB
testcase_18 AC 301 ms
52,836 KB
testcase_19 AC 304 ms
52,968 KB
testcase_20 AC 295 ms
53,300 KB
testcase_21 AC 306 ms
52,692 KB
testcase_22 AC 291 ms
53,096 KB
testcase_23 AC 324 ms
52,972 KB
testcase_24 AC 314 ms
52,828 KB
testcase_25 AC 298 ms
52,988 KB
testcase_26 AC 292 ms
52,740 KB
testcase_27 AC 305 ms
52,824 KB
testcase_28 AC 291 ms
52,600 KB
testcase_29 AC 297 ms
52,832 KB
testcase_30 AC 289 ms
52,624 KB
testcase_31 AC 284 ms
52,952 KB
testcase_32 AC 286 ms
53,068 KB
testcase_33 AC 292 ms
52,704 KB
testcase_34 AC 292 ms
52,596 KB
testcase_35 AC 291 ms
52,572 KB
testcase_36 AC 292 ms
52,588 KB
testcase_37 AC 295 ms
52,600 KB
testcase_38 AC 326 ms
53,264 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