結果

問題 No.461 三角形はいくつ?
ユーザー ヒッキープログラミングするスレ GitHub ガチヒッキープログラミングするスレ GitHub ガチ
提出日時 2016-12-12 02:06:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 994 bytes
コンパイル時間 1,536 ms
コンパイル使用メモリ 86,860 KB
実行使用メモリ 97,940 KB
最終ジャッジ日時 2023-08-19 18:04:21
合計ジャッジ時間 42,518 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
89,592 KB
testcase_01 WA -
testcase_02 AC 235 ms
89,172 KB
testcase_03 AC 232 ms
89,212 KB
testcase_04 AC 400 ms
93,724 KB
testcase_05 AC 4,068 ms
93,820 KB
testcase_06 AC 2,517 ms
96,668 KB
testcase_07 AC 2,729 ms
96,640 KB
testcase_08 AC 2,007 ms
95,000 KB
testcase_09 AC 315 ms
91,784 KB
testcase_10 AC 949 ms
95,800 KB
testcase_11 AC 3,044 ms
95,128 KB
testcase_12 AC 1,652 ms
94,628 KB
testcase_13 AC 4,371 ms
97,940 KB
testcase_14 AC 4,460 ms
97,048 KB
testcase_15 AC 4,405 ms
97,836 KB
testcase_16 AC 387 ms
92,080 KB
testcase_17 AC 392 ms
92,180 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
from bisect import bisect_left

n = int(input())

ps = [[Fraction(1)], [Fraction(1)], [Fraction(1)]]

for _ in range(n):
    p, a, b = map(int, input().split())
    ps[p].append(Fraction(a, a + b))

ps = sorted(map(sorted, ps), key=len, reverse=True)

ans = 0
for x in ps[0]:
    t = bisect_left(ps[1], Fraction(1) - x) 
    for c in range(t, len(ps[1])):
        y = ps[1][c]
        mn, mx = (x, y) if x < y else (y, x)
        k = Fraction(1) - mn
        i = bisect_left(ps[2], k)
        ans += len(ps[2]) - i
        if mn > Fraction(1, 2):
            r = (Fraction(1) - mn) + (Fraction(1) - mx)
            j = bisect_left(ps[2], r, i)
            if ps[2][j] == r:
                ans -= 1
        elif mn == Fraction(1) - mx:
            ans -= 1
        elif mn != mx:
            r = mn - (Fraction(1) - mx)
            j = bisect_left(ps[2], r, i)
            if ps[2][j] == r:
                ans -= 1
        else:
            ans -= 1

print(ans)
0