結果
問題 | No.2012 Largest Triangle |
ユーザー | 沙耶花 |
提出日時 | 2022-07-15 22:04:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,816 bytes |
コンパイル時間 | 4,680 ms |
コンパイル使用メモリ | 273,592 KB |
実行使用メモリ | 13,672 KB |
最終ジャッジ日時 | 2024-06-27 18:04:28 |
合計ジャッジ時間 | 10,967 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 166 ms
6,528 KB |
testcase_19 | AC | 169 ms
6,528 KB |
testcase_20 | WA | - |
testcase_21 | AC | 168 ms
6,528 KB |
testcase_22 | AC | 166 ms
6,400 KB |
testcase_23 | WA | - |
testcase_24 | AC | 167 ms
6,528 KB |
testcase_25 | AC | 162 ms
6,400 KB |
testcase_26 | TLE | - |
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 | -- | - |
ソースコード
#include <stdio.h> #include <bits/stdc++.h> #include <atcoder/all> using namespace atcoder; using mint = modint1000000007; using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf 1000000001 using ll = long long; struct F { ll a, b; F(ll a, ll b) : a(a), b(b) {} }; struct ConvexHullTrick { deque<F> deq; bool check(F &f1, F &f2, F &f3) { return (f2.a - f1.a) * (f3.b - f2.b) >= (f2.b - f1.b) * (f3.a - f2.a); } ll f(F &f1, ll x) { return f1.a * x + f1.b; } public: // a_{prev} >= a void add_line(ll a, ll b) { F f1 = F(a, b); while(deq.size() >= 2 && check(deq[deq.size()-2], deq[deq.size()-1], f1)) { deq.pop_back(); } deq.push_back(f1); } // x_{prev} <= x ll query(ll x) { while(deq.size() >= 2 && f(deq[0], x) >= f(deq[1], x)) { deq.pop_front(); } return f(deq[0], x); } }; bool check(long long a0,long long b0,long long a1,long long b1,long long x,long long y){ return (a0-a1)*x < (b1-b0)*y; } int main(){ int n; cin>>n; vector<pair<long long,long long>> a(n); rep(i,n){ cin>>a[i].first>>a[i].second; swap(a[i].first,a[i].second); } sort(a.begin(),a.end()); ConvexHullTrick C; rep(i,n){ C.add_line(a[i].first,-a[i].second); } long long ans = 0; deque<pair<long long,long long>> D; rep(i,C.deq.size()){ D.emplace_back(C.deq[i].a,C.deq[i].b); } rep(i,n){ int l = 0,r = D.size()-1; while(r-l>3){ int m0 = l + (r-l)/3; int m1 = l + (r-l)/3 * 2; if(check(D[m0].first,D[m0].second,D[m1].first,D[m1].second,a[i].second,a[i].first))r = m1; else l = m0; } rep(j,D.size()){ long long cur = 0; cur += D[j].second * a[i].first; cur += D[j].first * a[i].second; ans = min(ans,cur); } } cout<<-ans<<endl; return 0; }