結果

問題 No.461 三角形はいくつ?
ユーザー chocoruskchocorusk
提出日時 2019-12-07 18:35:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 1,760 bytes
コンパイル時間 1,471 ms
コンパイル使用メモリ 117,280 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 18:21:41
合計ジャッジ時間 4,668 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 82 ms
5,376 KB
testcase_06 AC 46 ms
5,376 KB
testcase_07 AC 55 ms
5,376 KB
testcase_08 AC 39 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 14 ms
5,376 KB
testcase_11 AC 66 ms
5,376 KB
testcase_12 AC 30 ms
5,376 KB
testcase_13 AC 96 ms
5,376 KB
testcase_14 AC 92 ms
5,376 KB
testcase_15 AC 98 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 78 ms
5,376 KB
testcase_19 AC 79 ms
5,376 KB
testcase_20 AC 97 ms
5,376 KB
testcase_21 AC 94 ms
5,376 KB
testcase_22 AC 93 ms
5,376 KB
testcase_23 AC 15 ms
5,376 KB
testcase_24 AC 14 ms
5,376 KB
testcase_25 AC 59 ms
5,376 KB
testcase_26 AC 61 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 5 ms
5,376 KB
testcase_29 AC 126 ms
5,376 KB
testcase_30 AC 123 ms
5,376 KB
testcase_31 AC 129 ms
5,376 KB
testcase_32 AC 121 ms
5,376 KB
testcase_33 AC 6 ms
5,376 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 4 ms
5,376 KB
testcase_36 AC 24 ms
5,376 KB
testcase_37 AC 21 ms
5,376 KB
testcase_38 AC 23 ms
5,376 KB
testcase_39 AC 21 ms
5,376 KB
testcase_40 AC 24 ms
5,376 KB
testcase_41 AC 23 ms
5,376 KB
testcase_42 AC 79 ms
5,376 KB
testcase_43 AC 77 ms
5,376 KB
testcase_44 AC 82 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
struct R{
  ll x, y;
  R(ll x, ll y):x(x), y(y){}
  R(ll x):x(x), y(1ll){}
  R operator+(const R a) const{
    return R(x*a.y+y*a.x, y*a.y);
  }
  R operator-(const R a) const{
    return R(x*a.y-y*a.x, y*a.y);
  }
  bool operator==(const R a) const{
    return x*a.y==y*a.x;
  }
  bool operator<(const R a) const{
    return x*a.y<y*a.x;
  }
  bool operator>=(const R a) const{
    return x*a.y>=y*a.x;
  }
};
int main()
{
    int n;
    cin>>n;
    vector<R> v[3];
    for(int i=0; i<n; i++){
        int p; ll a, b;
        cin>>p>>a>>b;
        v[p].push_back(R(a, a+b));
    }
    for(int i=0; i<3; i++){
        v[i].push_back(R(1));
        sort(v[i].begin(), v[i].end());
    }
    ll ans=0;
    for(int i=0; i<v[0].size(); i++){
        for(int j=0; j<v[1].size(); j++){
            R x=v[0][i], y=v[1][j];
            if(x+y<R(1)) continue;
            R z=max(R(1)-x, R(1)-y);
            int k=lower_bound(v[2].begin(), v[2].end(), z)-v[2].begin();
            ans+=(int)v[2].size()-k;
            k=lower_bound(v[2].begin(), v[2].end(), R(2)-x-y)-v[2].begin();
            if(k<v[2].size() && v[2][k]==R(2)-x-y && x+v[2][k]>=R(1) && y+v[2][k]>=R(1)) ans--;
        }
    }
    cout<<ans<<endl;
    return 0;
}
0