結果

問題 No.461 三角形はいくつ?
ユーザー kimiyukikimiyuki
提出日時 2016-12-11 18:31:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,799 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 79,196 KB
実行使用メモリ 86,136 KB
最終ジャッジ日時 2024-05-06 18:37:55
合計ジャッジ時間 29,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 20 ms
6,940 KB
testcase_05 TLE -
testcase_06 AC 3,294 ms
6,940 KB
testcase_07 AC 3,813 ms
6,940 KB
testcase_08 AC 2,599 ms
6,940 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 828 ms
6,944 KB
testcase_11 AC 4,375 ms
6,944 KB
testcase_12 AC 1,912 ms
6,940 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <array>
#include <cassert>
#define repeat(i,n) for (int i = 0; (i) < int(n); ++(i))
#define whole(f,x,...) ([&](decltype((x)) whole) { return (f)(begin(whole), end(whole), ## __VA_ARGS__); })(x)
typedef long long ll;
using namespace std;
struct rational { ll p, q; };
rational make_rational(ll p) { return { p, 1 }; }
rational make_rational(ll p, ll q) { if (p == 0) return { 0, 1 }; ll gcd = __gcd(p, q); return { p/gcd, q/gcd }; }
rational operator + (rational a, rational b) { return make_rational(a.p * b.q + b.p * a.q, a.q * b.q); }
rational operator - (ll a, rational b) { return make_rational(a * b.q - b.p, b.q); }
bool operator <  (rational a, rational b) { return a.p * b.q <  a.q * b.p; }
bool operator == (rational a, rational b) { return a.p * b.q == a.q * b.p; }
bool operator <= (rational a, ll b) { return a.p <= a.q * b; }
int main() {
    int n; cin >> n;
    array<vector<rational>, 3> qs = {};
    repeat (i,n) {
        int p, a, b; cin >> p >> a >> b;
        qs[p].push_back(make_rational(a, a + b));
    }
    repeat (i,3) {
        qs[i].emplace_back(make_rational(1));
        whole(sort, qs[i]);
    }
    ll cnt = 0;
    repeat (i,3) {
        for (rational q1 : qs[(i + 1) % 3]) {
            for (rational q2 : qs[(i + 2) % 3]) {
                rational qm = max(1 - q1, 1 - q2);
                rational qc = (1 - q1) + (1 - q2);
                if (qc <= 1) {
                    int lm = whole(lower_bound, qs[i], qm) - qs[i].begin();
                    int lc = whole(lower_bound, qs[i], qc) - qs[i].begin();
                    cnt += qs[i].size() - lm - (qs[i][lc] == qc);
                }
            }
        }
    }
    assert (cnt % 3 == 0);
    cout << cnt / 3 << endl;
    return 0;
}
0