結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,144 KB
testcase_01 AC 1 ms
10,280 KB
testcase_02 AC 1 ms
10,148 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 19 ms
6,820 KB
testcase_05 AC 4,916 ms
6,816 KB
testcase_06 AC 2,925 ms
6,820 KB
testcase_07 AC 3,413 ms
6,820 KB
testcase_08 AC 2,333 ms
6,820 KB
testcase_09 AC 10 ms
6,816 KB
testcase_10 AC 743 ms
6,820 KB
testcase_11 AC 3,947 ms
6,816 KB
testcase_12 AC 1,756 ms
6,816 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 3,009 ms
6,816 KB
testcase_24 AC 2,940 ms
6,816 KB
testcase_25 AC 3,913 ms
6,816 KB
testcase_26 AC 3,891 ms
6,816 KB
testcase_27 AC 3,953 ms
6,816 KB
testcase_28 AC 4,108 ms
6,816 KB
testcase_29 AC 4,346 ms
6,820 KB
testcase_30 AC 4,131 ms
6,816 KB
testcase_31 AC 4,633 ms
6,820 KB
testcase_32 AC 4,825 ms
6,820 KB
testcase_33 AC 10 ms
6,816 KB
testcase_34 AC 9 ms
6,816 KB
testcase_35 AC 9 ms
6,820 KB
testcase_36 AC 2,976 ms
6,816 KB
testcase_37 AC 2,991 ms
6,816 KB
testcase_38 AC 3,050 ms
6,816 KB
testcase_39 AC 3,091 ms
6,816 KB
testcase_40 AC 3,110 ms
6,816 KB
testcase_41 AC 3,006 ms
6,820 KB
testcase_42 AC 3,603 ms
6,820 KB
testcase_43 AC 3,360 ms
6,820 KB
testcase_44 AC 3,707 ms
10,148 KB
権限があれば一括ダウンロードができます

ソースコード

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