結果

問題 No.461 三角形はいくつ?
ユーザー maspymaspy
提出日時 2020-04-08 16:14:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,122 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 128,176 KB
最終ジャッジ日時 2024-07-18 14:50:41
合計ジャッジ時間 27,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 498 ms
44,500 KB
testcase_02 AC 503 ms
44,504 KB
testcase_03 AC 499 ms
44,368 KB
testcase_04 AC 504 ms
44,376 KB
testcase_05 AC 625 ms
113,120 KB
testcase_06 AC 594 ms
85,812 KB
testcase_07 AC 601 ms
91,880 KB
testcase_08 AC 550 ms
77,068 KB
testcase_09 AC 489 ms
44,524 KB
testcase_10 AC 505 ms
54,592 KB
testcase_11 AC 584 ms
98,068 KB
testcase_12 AC 525 ms
68,060 KB
testcase_13 AC 648 ms
126,444 KB
testcase_14 AC 652 ms
126,332 KB
testcase_15 AC 644 ms
125,304 KB
testcase_16 AC 580 ms
126,468 KB
testcase_17 AC 597 ms
125,156 KB
testcase_18 AC 644 ms
126,408 KB
testcase_19 AC 633 ms
127,016 KB
testcase_20 AC 635 ms
124,524 KB
testcase_21 AC 634 ms
127,052 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 502 ms
44,628 KB
testcase_26 AC 504 ms
44,504 KB
testcase_27 AC 512 ms
44,500 KB
testcase_28 AC 503 ms
44,496 KB
testcase_29 AC 531 ms
61,804 KB
testcase_30 AC 517 ms
51,164 KB
testcase_31 AC 565 ms
77,576 KB
testcase_32 AC 586 ms
88,912 KB
testcase_33 AC 501 ms
44,500 KB
testcase_34 AC 507 ms
44,252 KB
testcase_35 AC 505 ms
44,504 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

eps = 1e-16

N = int(readline())
X = [[0] for _ in range(3)]
m = map(int, read().split())
for p, a, b in zip(m, m, m):
    x = b / (a + b)
    X[p].append(x)

X.sort(key=len)


def solve_naive():
    import itertools
    ret = 0
    for x1, x2, x3 in itertools.product(*X):
        if 1 - eps < x1 + x2 + x3 < 1 + eps:
            continue
        if x1 + x3 > 1 + eps:
            continue
        if x1 + x2 > 1 + eps:
            continue
        if x2 + x3 > 1 + eps:
            continue
        ret += 1
    return ret


def solve(X, Y, Z):
    X.sort()
    Y.sort()
    Z.sort()
    add_XY = np.add.outer(X, Y).ravel()
    max_XY = np.maximum.outer(X, Y).ravel()
    cnt_Z = np.searchsorted(Z, 1 - max_XY + eps)
    ret = (cnt_Z * (add_XY < 1 + eps)).sum()
    # 1点で交わるものを除く
    ret -= (np.searchsorted(Z, 1 - add_XY + eps) - np.searchsorted(Z, 1 - add_XY - eps)).sum()
    return ret


X, Y, Z = map(np.array, X)

print(solve(X, Y, Z))
0