結果

問題 No.461 三角形はいくつ?
ユーザー titiatitia
提出日時 2023-09-19 04:15:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,322 ms / 5,000 ms
コード長 1,342 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-07-05 16:50:52
合計ジャッジ時間 19,667 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,552 KB
testcase_01 AC 43 ms
55,168 KB
testcase_02 AC 44 ms
55,040 KB
testcase_03 AC 42 ms
55,552 KB
testcase_04 AC 62 ms
66,816 KB
testcase_05 AC 453 ms
77,440 KB
testcase_06 AC 281 ms
77,696 KB
testcase_07 AC 322 ms
77,312 KB
testcase_08 AC 248 ms
77,696 KB
testcase_09 AC 63 ms
67,072 KB
testcase_10 AC 139 ms
76,800 KB
testcase_11 AC 353 ms
77,312 KB
testcase_12 AC 210 ms
77,440 KB
testcase_13 AC 483 ms
77,184 KB
testcase_14 AC 460 ms
77,312 KB
testcase_15 AC 481 ms
77,824 KB
testcase_16 AC 102 ms
77,056 KB
testcase_17 AC 102 ms
77,312 KB
testcase_18 AC 689 ms
77,184 KB
testcase_19 AC 732 ms
77,824 KB
testcase_20 AC 494 ms
77,568 KB
testcase_21 AC 477 ms
77,824 KB
testcase_22 AC 472 ms
77,440 KB
testcase_23 AC 170 ms
77,312 KB
testcase_24 AC 158 ms
77,696 KB
testcase_25 AC 1,219 ms
77,568 KB
testcase_26 AC 1,190 ms
77,824 KB
testcase_27 AC 107 ms
77,184 KB
testcase_28 AC 100 ms
77,568 KB
testcase_29 AC 1,231 ms
77,952 KB
testcase_30 AC 1,322 ms
77,312 KB
testcase_31 AC 1,189 ms
77,184 KB
testcase_32 AC 1,171 ms
77,056 KB
testcase_33 AC 90 ms
77,312 KB
testcase_34 AC 87 ms
77,312 KB
testcase_35 AC 82 ms
76,928 KB
testcase_36 AC 235 ms
77,696 KB
testcase_37 AC 217 ms
77,056 KB
testcase_38 AC 227 ms
77,312 KB
testcase_39 AC 206 ms
78,336 KB
testcase_40 AC 233 ms
77,312 KB
testcase_41 AC 231 ms
77,824 KB
testcase_42 AC 526 ms
77,312 KB
testcase_43 AC 553 ms
77,568 KB
testcase_44 AC 517 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from bisect import bisect_left
from collections import Counter
from math import gcd

L=[[(0,1)] for i in range(3)]

N=int(input())

for i in range(N):
    p,a,b=map(int,input().split())
    G=gcd(a,b)
    L[p].append((b//G,(a+b)//G))

from functools import cmp_to_key

def cmp(a, b):
    if a[0]*b[1]>b[0]*a[1]:
        return 1
    elif a[0]*b[1]==b[0]*a[1]:
        return 0
    else:
        return -1

L[0].sort(key=cmp_to_key(cmp))
L[1].sort(key=cmp_to_key(cmp))
L[2].sort(key=cmp_to_key(cmp))

ANS=0
C=Counter(L[2])

for x0,x1 in L[0]:
    for y0,y1 in L[1]:
        if x0*y1+x1*y0>x1*y1:
            break

        if x0*y1>x1*y0:
            MAX=(x0,x1)
        else:
            MAX=(y0,y1)

        m0,m1=MAX

        OK=-1
        NG=len(L[2])

        while NG>OK+1:
            mid=(OK+NG)//2

            z0,z1=L[2][mid]

            if z0*m1<=(m1-m0)*z1:
                OK=mid
            else:
                NG=mid

        #print(x0,x1,y0,y1,L[2],OK)

        ANS+=OK+1
        z0=x0*y1+x1*y0
        z1=x1*y1
        G=gcd(z0,z1)
        z0//=G
        z1//=G

        #print((z1-z0,z1),z0*m1,(m1-m0)*z1)
        
        if (z1-z0)*m1<=(m1-m0)*z1 and (z1-z0,z1) in C:
            ANS-=C[(z1-z0,z1)]

            #print("!",x0,x1,y0,y1,MAX,z0,z1,C[(z0,z1)])

print(ANS)


        

0