結果

問題 No.180 美しいWhitespace (2)
ユーザー izuru_matsuuraizuru_matsuura
提出日時 2016-09-22 21:40:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,790 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 169,876 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 13:15:02
合計ジャッジ時間 37,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 5 ms
5,248 KB
testcase_05 WA -
testcase_06 AC 79 ms
5,248 KB
testcase_07 AC 175 ms
5,248 KB
testcase_08 AC 365 ms
5,248 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2,795 ms
5,248 KB
testcase_13 AC 2,356 ms
5,248 KB
testcase_14 AC 2,630 ms
5,248 KB
testcase_15 AC 2,713 ms
5,248 KB
testcase_16 AC 2,385 ms
5,248 KB
testcase_17 AC 2,451 ms
5,248 KB
testcase_18 AC 2,333 ms
5,248 KB
testcase_19 AC 2,086 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 WA -
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2,990 ms
5,248 KB
testcase_31 AC 2,982 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 1,494 ms
5,248 KB
testcase_34 AC 1,493 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include <bits/stdc++.h>
using namespace std;
namespace {
typedef 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];
}
}
ll C(ll x) {
ll m = INF;
ll M = 0;
for (int i = 0; i < N; i++) {
m = min(m, A[i] + B[i] * x);
M = max(M, A[i] + B[i] * x);
}
//cout << x << " -> " << M - m << endl;
return M - m;
}
void solve() {
if (N == 1) {
cout << 0 << endl;
return;
}
ll len = C(1);
int 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++) {
ll p = C(y + dy);
if (len > p) {
len = p;
t = y + dy;
}
}
}
}
cout << t << endl;
}
}
int main() {
input(); solve();
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0