結果

問題 No.245 貫け!
ユーザー yuruhiyayuruhiya
提出日時 2021-05-06 20:51:44
言語 Crystal
(1.11.2)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 531 bytes
コンパイル時間 13,427 ms
コンパイル使用メモリ 295,672 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-09-14 12:18:12
合計ジャッジ時間 14,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 19 ms
5,376 KB
testcase_12 AC 45 ms
5,760 KB
testcase_13 AC 45 ms
5,888 KB
testcase_14 AC 45 ms
5,888 KB
testcase_15 AC 45 ms
5,888 KB
testcase_16 AC 44 ms
5,760 KB
testcase_17 AC 45 ms
5,760 KB
testcase_18 AC 45 ms
5,760 KB
testcase_19 AC 45 ms
5,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct Point
  property x : Int32
  property y : Int32

  def initialize(@x, @y)
  end
end

def intersect(p1, p2, p3, p4)
  ((p1.x - p2.x) * (p3.y - p1.y) + (p1.y - p2.y) * (p1.x - p3.x)) *
    ((p1.x - p2.x) * (p4.y - p1.y) + (p1.y - p2.y) * (p1.x - p4.x)) <= 0
end

n = read_line.to_i
a1, a2 = (1..n).map {
  a, b, c, d = read_line.split.map(&.to_i)
  [Point.new(a, b), Point.new(c, d)]
}.transpose
puts (a1 + a2).permutations(2).max_of { |(p1, p2)|
  p1 == p2 ? 0 : (0...n).count { |i|
    intersect(p1, p2, a1[i], a2[i])
  }
}
0