結果
問題 | No.1144 Triangles |
ユーザー | fastmath |
提出日時 | 2020-08-01 01:06:09 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,147 bytes |
コンパイル時間 | 2,206 ms |
コンパイル使用メモリ | 165,772 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-07-06 23:26:48 |
合計ジャッジ時間 | 6,690 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long #define ii pair <int, int> #define app push_back #define all(a) a.begin(), a.end() #define bp __builtin_popcountll #define ll long long #define mp make_pair #define f first #define s second #define Time (double)clock()/CLOCKS_PER_SEC #define debug(x) std::cout << #x << ": " << x << '\n'; const int MOD = 1000 * 1000 * 1000 + 7; int mod(int n) { n %= MOD; if (n < 0) return n + MOD; else return n; } int fp(int a, int p) { int ans = 1, c = a; for (int i = 0; (1ll << i) <= p; ++i) { if ((p >> i) & 1) ans = mod(ans * c); c = mod(c * c); } return ans; } int dv(int a, int b) { return mod(a * fp(b, MOD - 2)); } struct Point { int x, y; Point operator - (Point p) { return {x - p.x, y - p.y}; } int operator * (Point p) { return x * p.y - y * p.x; } int operator % (Point p) { return x * p.x + y * p.y; } bool operator == (Point p) { return x == p.x && y == p.y; } }; bool col(Point a, Point b) { return a % b >= 0 && a * b == 0; } signed main() { #ifdef HOME freopen("input.txt", "r", stdin); #else #define endl '\n' ios_base::sync_with_stdio(0); cin.tie(0); #endif int n; cin >> n; vector <Point> a(n); for (int i = 0; i < n; ++i) { cin >> a[i].x >> a[i].y; } int ans = 0; for (int s = 0; s < n; ++s) { vector <Point> v; for (int i = 0; i < n; ++i) if (!(a[s] == a[i])) v.app(a[i] - a[s]); auto comp = [] (Point a, Point b) { return atan2(a.y, a.x) < atan2(b.y, b.x); }; sort(all(v), comp); int sz = v.size(); for (int i = 0; i < sz; ++i) v.app(v[i]); int j = 0; for (int i = 0; i < sz; ++i) { j = max(j, i); while (j + 1 < i + sz && v[i] * v[j+1] >= 0) ++j; for (int k = i; k <= j; ++k) { ans += v[i] * v[k]; } } } cout << dv(ans, 3) << endl; }