結果

問題 No.743 Segments on a Polygon
ユーザー manhattanermanhattaner
提出日時 2018-10-31 23:01:55
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 490 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 35,400 KB
最終ジャッジ日時 2024-11-19 13:44:07
合計ジャッジ時間 34,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)

edges = []

edges = [*1..N].map{
    p1, p2 = gets.split.map(&:to_i)
    if p1 < p2 then
        [p1, p2]
    else
        [p2, p1]
    end
}.sort_by{|p| p[0]}

n_cross = 0

for i in 0...edges.size do
    car_path = edges[i]
    for j in i...edges.size do
        from, to = edges[j]
        if car_path[0] < from && from < car_path[1] &&
            (to < car_path[0] || car_path[1] < to) then
                n_cross += 1
        end
    end
end

p n_cross
0