結果

問題 No.461 三角形はいくつ?
ユーザー pekempeypekempey
提出日時 2016-12-13 01:07:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,290 ms / 5,000 ms
コード長 1,457 bytes
コンパイル時間 2,979 ms
コンパイル使用メモリ 183,976 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 05:00:51
合計ジャッジ時間 52,770 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2,644 ms
5,376 KB
testcase_06 AC 1,109 ms
5,376 KB
testcase_07 AC 1,333 ms
5,376 KB
testcase_08 AC 735 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 116 ms
5,376 KB
testcase_11 AC 1,682 ms
5,376 KB
testcase_12 AC 448 ms
5,376 KB
testcase_13 AC 3,288 ms
5,376 KB
testcase_14 AC 3,064 ms
5,376 KB
testcase_15 AC 3,241 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 3,254 ms
5,376 KB
testcase_19 AC 3,242 ms
5,376 KB
testcase_20 AC 3,196 ms
5,376 KB
testcase_21 AC 3,290 ms
5,376 KB
testcase_22 AC 3,163 ms
5,376 KB
testcase_23 AC 333 ms
5,376 KB
testcase_24 AC 267 ms
5,376 KB
testcase_25 AC 22 ms
5,376 KB
testcase_26 AC 22 ms
5,376 KB
testcase_27 AC 10 ms
5,376 KB
testcase_28 AC 10 ms
5,376 KB
testcase_29 AC 1,023 ms
5,376 KB
testcase_30 AC 539 ms
5,376 KB
testcase_31 AC 1,802 ms
5,376 KB
testcase_32 AC 2,237 ms
5,376 KB
testcase_33 AC 4 ms
5,376 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 724 ms
5,376 KB
testcase_37 AC 650 ms
5,376 KB
testcase_38 AC 675 ms
5,376 KB
testcase_39 AC 564 ms
5,376 KB
testcase_40 AC 679 ms
5,376 KB
testcase_41 AC 678 ms
5,376 KB
testcase_42 AC 1,788 ms
5,376 KB
testcase_43 AC 1,770 ms
5,376 KB
testcase_44 AC 1,688 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;

    vector<vector<int64_t>> a(3), b(3);
    for (int i = 0; i < 3; i++) {
        a[i].push_back(1);
        b[i].push_back(1);
    }
    for (int i = 0; i < n; i++) {
        int p, ta, tb;
        cin >> p >> ta >> tb;
        a[p].push_back(ta);
        b[p].push_back(ta + tb);
    }
    uint32_t ans = 0;
    for (int i = 0; i < a[0].size(); i++) {
        for (int j = 0; j < a[1].size(); j++) {
            if (a[0][i] * b[1][j] + a[1][j] * b[0][i] < b[0][i] * b[1][j]) {
                continue;
            }

            int64_t minA, minB;

            // a[0][i]/b[0][i] < a[1][j]/b[1][j]
            if (a[0][i] * b[1][j] < a[1][j] * b[0][i]) {
                minA = a[0][i];
                minB = b[0][i];
            } else {
                minA = a[1][j];
                minB = b[1][j];
            }

            int64_t x = a[0][i] * b[1][j];
            int64_t y = a[1][j] * b[0][i];
            int64_t z = b[0][i] * b[1][j];
            int64_t w = b[0][i] * b[1][j];
            int64_t u = x + y - 2 * w;
            int64_t v = minA - minB;

            for (int k = 0; k < a[2].size(); k++) {
                if (v * b[2][k] + a[2][k] * minB >= 0 && u * b[2][k] + a[2][k] * z != 0) {
                    ans++;
                }
            }
        }
    }
    cout << ans << endl;
}
0