結果

問題 No.461 三角形はいくつ?
ユーザー ヒッキープログラミングするスレ GitHub ガチヒッキープログラミングするスレ GitHub ガチ
提出日時 2016-12-12 05:24:39
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,092 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 67,740 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-29 14:58:06
合計ジャッジ時間 43,582 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 6 ms
6,820 KB
testcase_05 AC 965 ms
6,816 KB
testcase_06 AC 515 ms
6,820 KB
testcase_07 AC 633 ms
6,816 KB
testcase_08 AC 431 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 AC 137 ms
6,816 KB
testcase_11 AC 717 ms
6,816 KB
testcase_12 AC 332 ms
6,816 KB
testcase_13 AC 1,052 ms
6,820 KB
testcase_14 AC 985 ms
6,820 KB
testcase_15 AC 1,050 ms
6,816 KB
testcase_16 AC 6 ms
6,816 KB
testcase_17 AC 7 ms
6,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1,108 ms
6,816 KB
testcase_21 AC 1,049 ms
6,820 KB
testcase_22 AC 1,042 ms
6,816 KB
testcase_23 AC 118 ms
6,820 KB
testcase_24 AC 101 ms
6,816 KB
testcase_25 AC 3,938 ms
6,820 KB
testcase_26 AC 3,948 ms
6,820 KB
testcase_27 AC 7 ms
6,816 KB
testcase_28 AC 6 ms
6,816 KB
testcase_29 AC 4,146 ms
6,820 KB
testcase_30 AC 4,485 ms
6,820 KB
testcase_31 AC 3,778 ms
6,816 KB
testcase_32 AC 3,310 ms
6,820 KB
testcase_33 AC 8 ms
6,820 KB
testcase_34 AC 7 ms
6,816 KB
testcase_35 AC 6 ms
6,816 KB
testcase_36 AC 247 ms
6,816 KB
testcase_37 AC 213 ms
6,816 KB
testcase_38 AC 228 ms
6,816 KB
testcase_39 AC 189 ms
6,820 KB
testcase_40 AC 241 ms
6,816 KB
testcase_41 AC 226 ms
6,820 KB
testcase_42 AC 698 ms
6,816 KB
testcase_43 AC 719 ms
6,816 KB
testcase_44 AC 699 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

template <typename T>
T gcd(T x, T y) {
    T z;
    while (x) { z = x; x = y % x; y = z; }
    return y;
}

template <typename T>
struct rational {
    T a, b;
    rational():a(0),b(1) {}
    rational(T _a):a(_a),b(1) {}
    rational(T _a, T _b):a(_a),b(_b) {}
    rational<T> operator +(const rational<T> o) const { 
        if (b == o.b) { return rational<T>(a + o.a, b); }
        T ta = a * o.b + o.a * b, tb = b * o.b, tg = gcd(ta, tb);
        return rational<T>(ta / tg, tb / tg);
    }
    rational<T> operator -(const rational<T> o) const {
        if (b == o.b) { return rational<T>(a - o.a, b); }
        T ta = a * o.b - o.a * b, tb = b * o.b, tg = gcd(ta, tb);
        return rational<T>(ta / tg, tb / tg);
    }
    bool operator <(const rational<T> o) const {
        return b == o.b ? a < o.a : a * o.b < o.a * b;
    }
    rational<T> diff1() const { return rational<T>(b - a, b); }
};

int main() {
    
    using std::vector;
    typedef rational<long long> rational;
    
    int n;
    vector<rational> ps[3];
    
    std::cin >> n;
    for (auto i = 0; i < n; i++) {
        int p, a, b;
        std::cin >> p >> a >> b;
        ps[p].push_back({a, a + b});
    }
    
    for (auto i = 0; i < 3; i++) {
        ps[i].push_back({1, 1});
        std::sort(ps[i].begin(), ps[i].end());
    }
    
    auto ans = 0;
    
    for (auto it0 = ps[0].begin(); it0 != ps[0].end(); it0++) {
        auto x = *it0, dx = x.diff1();
        for (auto it1 = std::lower_bound(ps[1].begin(), ps[1].end(), dx); it1 != ps[1].end(); it1++) {
            auto y = *it1, dy = y.diff1();
            auto it2 = std::lower_bound(ps[2].begin(), ps[2].end(), std::min(x, y).diff1());
            ans += (ps[2].end() - it2) - 1;
            if ((x - dy).a) {
                auto r = dx + dy;
                auto cr = std::lower_bound(it2, ps[2].end(), r);
                if ((r - *cr).a) {
                    ans++;
                }
            }
        }
    }
    
    std::cout << ans << std::endl;
    
    
    return 0;
}
0