結果

問題 No.461 三角形はいくつ?
ユーザー PachicobuePachicobue
提出日時 2018-09-15 16:10:01
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,939 bytes
コンパイル時間 2,711 ms
コンパイル使用メモリ 208,016 KB
最終ジャッジ日時 2025-01-06 13:26:36
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
10,024 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 14 ms
6,820 KB
testcase_05 AC 4,226 ms
6,820 KB
testcase_06 AC 2,411 ms
6,820 KB
testcase_07 AC 2,839 ms
6,820 KB
testcase_08 AC 1,916 ms
6,824 KB
testcase_09 AC 8 ms
6,816 KB
testcase_10 AC 588 ms
6,816 KB
testcase_11 AC 3,193 ms
6,824 KB
testcase_12 AC 1,428 ms
6,824 KB
testcase_13 AC 4,790 ms
6,816 KB
testcase_14 AC 4,480 ms
6,820 KB
testcase_15 AC 4,819 ms
6,820 KB
testcase_16 AC 15 ms
6,824 KB
testcase_17 AC 15 ms
6,816 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 4,036 ms
6,824 KB
testcase_21 AC 4,304 ms
6,816 KB
testcase_22 AC 4,165 ms
6,820 KB
testcase_23 AC 574 ms
6,820 KB
testcase_24 AC 524 ms
6,820 KB
testcase_25 AC 13 ms
6,816 KB
testcase_26 AC 13 ms
6,816 KB
testcase_27 AC 11 ms
6,816 KB
testcase_28 AC 11 ms
6,820 KB
testcase_29 AC 1,899 ms
6,816 KB
testcase_30 AC 875 ms
6,824 KB
testcase_31 AC 3,637 ms
6,820 KB
testcase_32 AC 4,820 ms
6,820 KB
testcase_33 AC 8 ms
6,816 KB
testcase_34 AC 7 ms
6,816 KB
testcase_35 AC 7 ms
6,820 KB
testcase_36 AC 1,157 ms
6,820 KB
testcase_37 AC 1,093 ms
6,816 KB
testcase_38 AC 1,182 ms
6,820 KB
testcase_39 AC 1,020 ms
6,820 KB
testcase_40 AC 1,109 ms
6,820 KB
testcase_41 AC 1,203 ms
6,820 KB
testcase_42 AC 3,082 ms
6,816 KB
testcase_43 AC 3,255 ms
6,820 KB
testcase_44 AC 3,017 ms
10,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define show(x) std::cerr << #x << " = " << x << std::endl
using ll = long long;
template <typename T>
constexpr T gcd(const T a, const T b) { return (b != 0) ? gcd(b, a % b) : a; }
template <typename T>
constexpr T lcm(const T a, const T b) { return (a / gcd(a, b)) * b; }
class Rational
{
public:
    using T = ll;
    Rational() = default;
    Rational(const T N) : N{N} {}
    Rational(const T N_, const T D_) : N{N_}, D{D_} { N /= gcd(N_, D_), D /= gcd(N_, D_); }
    Rational operator+(const Rational& r) const { return Rational{lcm(D, r.D) / D * N + lcm(D, r.D) / r.D * r.N, lcm(D, r.D)}; }
    Rational operator-(const Rational& r) const { return Rational{lcm(D, r.D) / D * N - lcm(D, r.D) / r.D * r.N, lcm(D, r.D)}; }
    bool operator==(const Rational& r) const { return N * r.D == D * r.N; }
    bool operator<(const Rational& r) const { return N * r.D < D * r.N; }
    bool operator>(const Rational& r) const { return N * r.D > D * r.N; }

private:
    T N = 0, D = 1;
};
int main()
{
    int N;
    std::cin >> N;
    std::vector<Rational> A{1}, B{1}, C{1};
    for (int i = 0; i < N; i++) {
        int p, a, b;
        std::cin >> p >> a >> b;
        (p == 0 ? A : p == 1 ? B : C).push_back(Rational{a, a + b});
    }
    if (A.size() < B.size()) { std::swap(A, B); }
    if (A.size() < C.size()) { std::swap(A, C); }
    std::sort(A.begin(), A.end()), std::sort(B.begin(), B.end(), std::greater<Rational>{}), std::sort(C.begin(), C.end(), std::greater<Rational>{});
    int ans = 0;
    for (const auto& b : B) {
        for (const auto& c : C) {
            if (b + c < Rational(1)) { break; }
            ans += A.end() - std::lower_bound(A.begin(), A.end(), Rational(1) - std::min(b, c));
            ans -= std::upper_bound(A.begin(), A.end(), Rational(2) - b - c) - std::lower_bound(A.begin(), A.end(), Rational(2) - b - c);
        }
    }
    std::cout << ans << std::endl;
    return 0;
}
0