結果
問題 | No.180 美しいWhitespace (2) |
ユーザー | izuru_matsuura |
提出日時 | 2016-09-22 21:43:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,817 bytes |
コンパイル時間 | 1,878 ms |
コンパイル使用メモリ | 169,852 KB |
実行使用メモリ | 8,576 KB |
最終ジャッジ日時 | 2024-11-17 13:16:48 |
合計ジャッジ時間 | 87,769 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
8,448 KB |
testcase_01 | AC | 2 ms
8,448 KB |
testcase_02 | AC | 1 ms
8,448 KB |
testcase_03 | AC | 1 ms
8,576 KB |
testcase_04 | AC | 10 ms
8,448 KB |
testcase_05 | WA | - |
testcase_06 | AC | 214 ms
8,448 KB |
testcase_07 | AC | 483 ms
8,448 KB |
testcase_08 | AC | 1,010 ms
8,448 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | WA | - |
testcase_28 | AC | 1 ms
5,248 KB |
testcase_29 | AC | 2 ms
5,248 KB |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | AC | 4,290 ms
5,248 KB |
testcase_34 | AC | 4,334 ms
8,448 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; namespace { typedef long double real; typedef long long ll; template<class T> ostream& operator<<(ostream& os, const vector<T>& vs) { if (vs.empty()) return os << "[]"; auto i = vs.begin(); os << "[" << *i; for (++i; i != vs.end(); ++i) os << " " << *i; return os << "]"; } template<class T> istream& operator>>(istream& is, vector<T>& vs) { for (auto it = vs.begin(); it != vs.end(); it++) is >> *it; return is; } const ll INF = LLONG_MAX / 2LL; int N; vector<ll> A, B; void input() { cin >> N; A.resize(N); B.resize(N); for (int i = 0; i < N; i++) { cin >> A[i] >> B[i]; } } real C(ll x) { real m = 1e30; real M = 0; for (int i = 0; i < N; i++) { m = min(m, A[i] + real(B[i]) * x); M = max(M, A[i] + real(B[i]) * x); } //cout << x << " -> " << M - m << endl; return M - m; } void solve() { if (N == 1) { cout << 0 << endl; return; } real len = C(1); ll t = 1; for (int i = 0; i < N; i++) { for (int j = i + 1; j < N; j++) { if (B[i] == B[j]) continue; real x = - (A[i] - A[j]) / real(B[i] - B[j]); if (x <= 0) continue; ll y = floor(x); for (ll dy = -2; dy <= 2; dy++) { real p = C(y + dy); if (len > p) { len = p; t = y + dy; } } } } cout << t << endl; } } int main() { input(); solve(); return 0; }