結果
問題 | No.461 三角形はいくつ? |
ユーザー | ヒッキープログラミングするスレ GitHub ガチ |
提出日時 | 2016-12-12 05:11:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,823 bytes |
コンパイル時間 | 1,222 ms |
コンパイル使用メモリ | 66,988 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-29 14:50:22 |
合計ジャッジ時間 | 5,991 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 5 ms
5,248 KB |
testcase_34 | AC | 5 ms
5,248 KB |
testcase_35 | AC | 5 ms
5,248 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> template <typename T> struct rational { T a, b; rational():a(0),b(1) {} rational(T _a):a(_a),b(1) {} rational(T _a, T _b):a(_a),b(_b) {} rational<T> operator +(const rational<T> o) const { return b == o.b ? rational<T>(a + o.a, b) : rational<T>(a * o.b + o.a * b, b * o.b); } rational<T> operator -(const rational<T> o) const { return b == o.b ? rational<T>(a - o.a, b) : rational<T>(a * o.b - o.a * b, b * o.b); } bool operator <(const rational<T> o) const { return b == o.b ? a < o.a : a * o.b < o.a * b; } rational<T> diff1() const { return rational<T>(b - a, b); } }; int main() { using std::vector; typedef rational<int> rational; int n; vector<rational> ps[3]; std::cin >> n; for (auto i = 0; i < n; i++) { int p, a, b; std::cin >> p >> a >> b; ps[p].push_back({a, a + b}); } for (auto i = 0; i < 3; i++) { ps[i].push_back({1, 1}); std::sort(ps[i].begin(), ps[i].end()); } auto ans = 0; for (auto it0 = ps[0].begin(); it0 != ps[0].end(); it0++) { auto x = *it0, dx = x.diff1(); for (auto it1 = std::lower_bound(ps[1].begin(), ps[1].end(), dx); it1 != ps[1].end(); it1++) { auto y = *it1, dy = y.diff1(); auto it2 = std::lower_bound(ps[2].begin(), ps[2].end(), std::min(x, y).diff1()); ans += (ps[2].end() - it2) - 1; if ((x - dy).a) { auto r = dx + dy; auto cr = std::lower_bound(it2, ps[2].end(), r); if ((r - *cr).a) { ans++; } } } } std::cout << ans << std::endl; return 0; }