結果
問題 | No.281 門松と魔法(1) |
ユーザー | pekempey |
提出日時 | 2015-09-18 22:58:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,266 bytes |
コンパイル時間 | 1,378 ms |
コンパイル使用メモリ | 158,476 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-11-06 18:53:43 |
合計ジャッジ時間 | 3,774 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 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 | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | WA | - |
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 | 2 ms
5,248 KB |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 2 ms
5,248 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | RE | - |
testcase_47 | AC | 2 ms
6,816 KB |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | WA | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | WA | - |
testcase_55 | AC | 2 ms
5,248 KB |
testcase_56 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, a) rep2 (i, 0, a) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define repr(i, a) repr2 (i, 0, a) #define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--) #define chmin(a, b) ((b) < a && (a = (b), true)) #define chmax(a, b) (a < (b) && (a = (b), true)) #define rng(a) (a).begin(), (a).end() using namespace std; typedef long long ll; int main() { ll d, h1, h2, h3; cin >> d >> h1 >> h2 >> h3; if (h1 < h2 && h2 > h3) { cout << 0 << endl; return 0; } if (h1 > h2 && h2 < h3) { cout << 0 << endl; return 0; } const ll inf = 1e18; auto f = [&](ll a, ll b) { if (a < b) return 0ll; return (a - b + d) / d; }; auto g = [&](ll a) { return max(0ll, a - d); }; ll ans = inf; { ll cand = f(h2, min(h1, h3)); ll th2 = max(0ll, h2 - cand * d); if (h1 == h3) { if (g(h3) == th2) { if (g(th2) != h3) { cand += 2; } else { cand = inf; } } else { cand++; } } chmin(ans, cand); } { ll c1 = f(h1, h2); ll c3 = f(h3, h2); h1 = max(0ll, h1 - c1 * d); h3 = max(0ll, h3 - c3 * d); ll cand = c1 + c3; if (h1 == h3) { if (g(h1) != h3) cand++; else cand = inf; } chmin(ans, cand); } if (ans >= inf) ans = -1; cout << ans << endl; }