結果

問題 No.1041 直線大学
ユーザー yakamotoyakamoto
提出日時 2020-05-01 21:33:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 2,998 bytes
コンパイル時間 13,873 ms
コンパイル使用メモリ 462,036 KB
実行使用メモリ 54,088 KB
最終ジャッジ日時 2024-04-28 00:11:45
合計ジャッジ時間 25,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
52,808 KB
testcase_01 AC 263 ms
54,088 KB
testcase_02 AC 269 ms
51,292 KB
testcase_03 AC 262 ms
51,152 KB
testcase_04 AC 254 ms
51,160 KB
testcase_05 AC 265 ms
51,168 KB
testcase_06 AC 257 ms
51,236 KB
testcase_07 AC 263 ms
51,160 KB
testcase_08 AC 277 ms
51,160 KB
testcase_09 AC 271 ms
51,292 KB
testcase_10 AC 282 ms
51,780 KB
testcase_11 AC 280 ms
51,796 KB
testcase_12 AC 288 ms
51,896 KB
testcase_13 AC 263 ms
51,036 KB
testcase_14 AC 288 ms
52,020 KB
testcase_15 AC 270 ms
51,288 KB
testcase_16 AC 282 ms
51,780 KB
testcase_17 AC 267 ms
51,296 KB
testcase_18 AC 265 ms
51,452 KB
testcase_19 AC 275 ms
51,816 KB
testcase_20 AC 260 ms
51,412 KB
testcase_21 AC 274 ms
51,524 KB
testcase_22 AC 261 ms
51,008 KB
testcase_23 AC 303 ms
52,168 KB
testcase_24 AC 290 ms
51,956 KB
testcase_25 AC 269 ms
51,388 KB
testcase_26 AC 292 ms
51,284 KB
testcase_27 AC 284 ms
51,236 KB
testcase_28 AC 267 ms
51,420 KB
testcase_29 AC 274 ms
51,156 KB
testcase_30 AC 269 ms
51,300 KB
testcase_31 AC 263 ms
51,060 KB
testcase_32 AC 266 ms
51,292 KB
testcase_33 AC 272 ms
51,108 KB
testcase_34 AC 266 ms
51,284 KB
testcase_35 AC 267 ms
50,928 KB
testcase_36 AC 279 ms
51,040 KB
testcase_37 AC 281 ms
51,160 KB
testcase_38 AC 299 ms
52,028 KB
testcase_39 AC 278 ms
51,352 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