結果
問題 | No.461 三角形はいくつ? |
ユーザー | imulan |
提出日時 | 2016-12-12 04:16:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,355 bytes |
コンパイル時間 | 1,637 ms |
コンパイル使用メモリ | 175,896 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-29 14:35:39 |
合計ジャッジ時間 | 4,182 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 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 | AC | 43 ms
5,248 KB |
testcase_17 | AC | 43 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 47 ms
5,248 KB |
testcase_26 | AC | 46 ms
5,248 KB |
testcase_27 | AC | 46 ms
5,248 KB |
testcase_28 | AC | 46 ms
5,248 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 17 ms
5,248 KB |
testcase_34 | AC | 17 ms
5,248 KB |
testcase_35 | AC | 17 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 <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second typedef pair<int,int> pi; struct line{ int p,a,b; }; inline int intersect_inside(line m, line n) { if((ll)m.a*(n.a+n.b) > (ll)n.b*(m.a+m.b)) return 1; return 0; } int main() { int n; scanf(" %d", &n); vector<line> l(n); rep(i,n) { scanf(" %d %d %d", &l[i].p, &l[i].a, &l[i].b); int G=__gcd(l[i].a,l[i].b); l[i].a/=G; l[i].b/=G; } int two=0,three=0; rep(i,n)rep(j,i)if(l[i].p!=l[j].p) two+=intersect_inside(l[i],l[j]); set<pi> s[3]; rep(i,n) s[l[i].p].insert(pi(l[i].a,l[i].b)); for(const auto &X:s[0]) { if(X.fi>=X.se && s[1].count(X) && s[2].count(X)) ++three; pi revX(X.se,X.fi); if(X.fi<X.se) { if(s[1].count(revX) && s[2].count(revX)) ++three; } else if(X.fi>X.se) { if(s[0].count(revX) && s[1].count(X) && s[2].count(revX)) ++three; if(s[0].count(revX) && s[1].count(revX) && s[2].count(X)) ++three; } } printf("%d\n", 1+n+two+three); return 0; }