結果
問題 | No.180 美しいWhitespace (2) |
ユーザー | tnakao0123 |
提出日時 | 2016-04-11 16:04:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 1,284 bytes |
コンパイル時間 | 587 ms |
コンパイル使用メモリ | 84,488 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-04 06:20:49 |
合計ジャッジ時間 | 1,889 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 3 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 3 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
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 | AC | 0 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 1 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 1 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 3 ms
5,248 KB |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 3 ms
5,248 KB |
ソースコード
/* -*- coding: utf-8 -*- * * 180.cc: No.180 美しいWhitespace (2) - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ const int MAX_N = 1000; typedef long long ll; const ll LINF = 1LL << 60; /* typedef */ /* global variables */ int n; ll as[MAX_N], bs[MAX_N]; /* subroutines */ ll f(ll x) { ll maxab = -1, minab = LINF; for (int i = 0; i < n; i++) { ll ab = as[i] + bs[i] * x; if (maxab < ab) maxab = ab; if (minab > ab) minab = ab; } return maxab - minab; } /* main */ int main() { cin >> n; for (int i = 0; i < n; i++) cin >> as[i] >> bs[i]; ll xl = 1, xr = 1000000000 + 1; while (xl + 2 < xr) { ll x0 = (xl * 2 + xr) / 3, x1 = (xl + xr * 2) / 3; if (f(x0) <= f(x1)) xr = x1; else xl = x0; } //printf("%lld-%lld\n", xl, xr); ll minf = LINF, minx = -1; for (ll x = xl; x <= xr; x++) { ll fx = f(x); if (minf > fx) { minf = fx; minx = x; } } printf("%lld\n", minx); return 0; }