結果

問題 No.461 三角形はいくつ?
ユーザー kimiyukikimiyuki
提出日時 2016-12-11 18:19:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,221 bytes
コンパイル時間 2,836 ms
コンパイル使用メモリ 104,948 KB
実行使用メモリ 14,016 KB
最終ジャッジ日時 2024-05-06 18:36:08
合計ジャッジ時間 9,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,576 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 21 ms
5,376 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
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>
#include <boost/rational.hpp>
#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;
typedef boost::rational<ll> ratio;
using namespace std;
int main() {
    int n; cin >> n;
    array<vector<ratio>, 3> qs = {};
    repeat (i,n) {
        int p, a, b; cin >> p >> a >> b;
        qs[p].emplace_back(a, a + b);
    }
    repeat (i,3) {
        qs[i].emplace_back(1);
        whole(sort, qs[i]);
    }
    int cnt = 0;
    repeat (i,3) {
        for (ratio q1 : qs[(i + 1) % 3]) {
            for (ratio q2 : qs[(i + 2) % 3]) {
                ratio qm = max(1 - q1, 1 - q2);
                ratio 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