結果

問題 No.461 三角形はいくつ?
ユーザー しらっ亭しらっ亭
提出日時 2016-12-12 05:01:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 5,596 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 186,328 KB
実行使用メモリ 146,212 KB
最終ジャッジ日時 2024-05-07 02:29:45
合計ジャッジ時間 36,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 2,638 ms
66,784 KB
testcase_06 AC 1,327 ms
36,528 KB
testcase_07 AC 1,632 ms
50,936 KB
testcase_08 AC 1,113 ms
33,988 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 325 ms
11,804 KB
testcase_11 AC 1,902 ms
51,108 KB
testcase_12 AC 817 ms
27,364 KB
testcase_13 AC 2,869 ms
71,400 KB
testcase_14 AC 2,749 ms
67,952 KB
testcase_15 AC 2,912 ms
71,272 KB
testcase_16 AC 615 ms
6,940 KB
testcase_17 AC 646 ms
6,944 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 3,038 ms
72,672 KB
testcase_21 AC 2,873 ms
70,728 KB
testcase_22 AC 2,869 ms
70,084 KB
testcase_23 AC 669 ms
15,248 KB
testcase_24 AC 652 ms
15,624 KB
testcase_25 TLE -
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 <bits/stdc++.h>
using namespace std;

#define _p(...) (void)printf(__VA_ARGS__)
#define forr(x,arr) for(auto&& x:arr)
#define _overload3(_1,_2,_3,name,...) name
#define _rep2(i,n) _rep3(i,0,n)
#define _rep3(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,_rep3,_rep2,)(__VA_ARGS__)
#define _rrep2(i,n) _rrep3(i,0,n)
#define _rrep3(i,a,b) for(int i=int(b)-1;i>=int(a);i--)
#define rrep(...) _overload3(__VA_ARGS__,_rrep3,_rrep2,)(__VA_ARGS__)
#define all(x) (x).begin(), (x).end()
#define bit(n) (1LL<<(n))
#define sz(x) ((int)(x).size())
#define fst first
#define snd second
using ll=long long;using pii=pair<int,int>;
using vb=vector<bool>;using vs=vector<string>;
using vi=vector<int>;using vvi=vector<vi>;using vvvi=vector<vvi>;
using vl=vector<ll>;using vvl=vector<vl>;using vvvl=vector<vvl>;
using vd=vector<double>;using vvd=vector<vd>;using vvvd=vector<vvd>;
using vpii=vector<pii>;using vvpii=vector<vpii>;using vvvpii=vector<vvpii>;
template<typename T>T read(){T t;cin>>t;return t;}
template<class T,class U>ostream&operator<<(ostream&o,const pair<T,U>&p){o<<'('<<p.fst<<", "<<p.snd<<')';return o;}

#define A first
#define B second

typedef long long Integer;
Integer gcd(Integer a, Integer b) { return a > 0 ? gcd(b % a, a) : b; }
struct rational {
  Integer p, q;
  void normalize() { // keep q positive
    if (q < 0) p *= -1, q *= -1;
    Integer d = gcd(p < 0 ? -p : p, q);
    if (d == 0) p = 0,  q = 1;
    else        p /= d, q /= d;
  }
  rational(Integer p, Integer q = 1) : p(p), q(q) {
    normalize();
  }
  rational &operator += (const rational &a) {
    p = a.q * p + a.p * q; q = a.q * q; normalize();
    return *this;
  }
  rational &operator -= (const rational &a) {
    p = a.q * p - a.p * q; q = a.q * q; normalize();
    return *this;
  }
  rational &operator *= (const rational &a) {
    p *= a.p; q *= a.q; normalize();
    return *this;
  }
  rational &operator /= (const rational &a) {
    p *= a.q; q *= a.p; normalize();
    return *this;
  }
  rational &operator - () {
    p *= -1;
    return *this;
  }
};
rational operator + (const rational &a, const rational &b) {
  return rational(a) += b;
}
rational operator * (const rational &a, const rational &b) {
  return rational(a) *= b;
}
rational operator - (const rational &a, const rational &b) {
  return rational(a) -= b;
}
rational operator / (const rational &a, const rational &b) {
  return rational(a) /= b;
}
bool operator < (const rational &a, const rational &b) { // avoid overflow
  return (long double) a.p * b.q < (long double) a.q * b.p;
}
bool operator <= (const rational &a, const rational &b) {
  return !(b < a);
}
bool operator > (const rational &a, const rational &b) {
  return b < a;
}
bool operator >= (const rational &a, const rational &b) {
  return !(a < b);
}
bool operator == (const rational &a, const rational &b) {
  return !(a < b) && !(b < a);
}
bool operator != (const rational &a, const rational &b) {
  return (a < b) || (b < a);
}

struct Hash {
    typedef std::size_t result_type;
    std::size_t operator()(const rational& key) const;
};

inline std::size_t Hash::operator()(const rational& key) const {
  return (key.p << 32) + key.q;
}

inline int cmp(int a, int b, int c, int d) {
  ll ad = a * d;
  ll cb = c * b;
  ll ret = ad - cb;
  if (ret > 0) return 1;
  if (ret < 0) return -1;
  return 0;
}

inline bool cmp_b(const pii &lhs, decltype(lhs) rhs) {
  return cmp(lhs.A, lhs.B, rhs.A, rhs.B) <= 0;
}

// a/(a+b) と足したら1を越えるのが何本あるか
// O(log |S|)
int bs(const rational &ab, const vector<rational> &S) {
  int ok = sz(S);
  int ng = -1;

  while (abs(ok - ng) > 1) {
    int mid = (ok + ng) / 2;
    bool c = ab + S[mid] > 1;
    // cout << "ok: " << ok << ", ng: " << ng << ", ";
    // cout << "check(" << mid << ") -> " << c << endl;
    if (c) ok = mid;
    else ng = mid;
  }
  return sz(S) - ok;
}

void Main() {
  int n = read<int>();

  vector<rational> R[3];

  rep(i, n) {
    int t = read<int>();
    int a = read<int>();
    int b = read<int>();

    R[t].emplace_back(a, a + b);
  }

  rep(i, 3) sort(all(R[i]));
  //rep(ii,3) { cout << "R["<<ii<<"]:"; rep(jj, sz(R[ii])) cout << ' ' << R[ii][jj]; cout << endl; }

  ll ans = 1 + n;

  forr(ab, R[1]) {
    int c0 = bs(ab, R[0]);
    //_p("R1: a:%d, b:%d, c0: %d\n", a, b, c0);
    ans += c0;
  }

  forr(ab, R[2]) {
    int c0 = bs(ab, R[0]);
    int c1 = bs(ab, R[1]);
    //_p("R2: a:%lld, b:%lld, c0: %d, c1: %d\n", a, b, c0, c1);
    ans += c0;
    ans += c1;
  }

  // R[0] と R[1] O(N^2)
  vector<rational> X;
  unordered_map<rational, int, Hash> Y;
  {
    forr(ab, R[0]) {
      forr(cd, R[1]) {
        if (ab + cd >= 1) {
          if (ab < cd) {
            X.emplace_back(ab);
          }
          else {
            X.emplace_back(cd);
          }
          {
            auto e = (1-cd) + (1-ab);
            auto f = cd - (1-ab);
            if (f > 0) {
              //Y.emplace_back(e / (e+f));
              Y[e / (e+f)]++;
            }
          }
        }
      }
    }
  }

  // O(N^2 log N^2) TLE?
  sort(all(X));
  //sort(all(Y));
  //cout << "X:"; rep(ii,sz(X)) cout << ' ' << X[ii]; cout << endl;

  // 3本
  // O(n * log(N^2))
  forr(ab, R[2]) {

    // b/(a+b) 以上の X を数える
    rational bab(1 - ab);
    ans += X.end() - lower_bound(all(X), bab);

    // 交点に重なる場合を除く
    //ans -= upper_bound(all(Y), ab) - lower_bound(all(Y), ab);
    ans -= Y[ab];
  }

  cout << ans << endl;

}
int main() { cin.tie(nullptr); ios::sync_with_stdio(false); Main(); return 0; }
0