結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
44,384 KB
testcase_01 AC 484 ms
44,508 KB
testcase_02 AC 494 ms
44,500 KB
testcase_03 AC 469 ms
44,500 KB
testcase_04 AC 481 ms
44,628 KB
testcase_05 AC 661 ms
113,448 KB
testcase_06 AC 568 ms
85,928 KB
testcase_07 AC 589 ms
92,320 KB
testcase_08 AC 546 ms
77,308 KB
testcase_09 AC 472 ms
44,640 KB
testcase_10 AC 495 ms
54,856 KB
testcase_11 AC 591 ms
98,204 KB
testcase_12 AC 537 ms
67,984 KB
testcase_13 AC 676 ms
125,972 KB
testcase_14 AC 631 ms
125,744 KB
testcase_15 AC 618 ms
125,396 KB
testcase_16 AC 551 ms
126,708 KB
testcase_17 AC 555 ms
125,260 KB
testcase_18 AC 615 ms
126,416 KB
testcase_19 AC 612 ms
126,756 KB
testcase_20 AC 599 ms
124,504 KB
testcase_21 AC 605 ms
126,840 KB
testcase_22 AC 622 ms
126,460 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 488 ms
44,496 KB
testcase_26 AC 486 ms
44,496 KB
testcase_27 AC 490 ms
44,384 KB
testcase_28 AC 485 ms
44,884 KB
testcase_29 AC 513 ms
62,104 KB
testcase_30 AC 503 ms
51,160 KB
testcase_31 AC 526 ms
77,868 KB
testcase_32 AC 548 ms
89,136 KB
testcase_33 AC 478 ms
44,760 KB
testcase_34 AC 470 ms
44,500 KB
testcase_35 AC 475 ms
44,508 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-11

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