結果
問題 | No.281 門松と魔法(1) |
ユーザー | pekempey |
提出日時 | 2015-09-18 23:03:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,302 bytes |
コンパイル時間 | 1,403 ms |
コンパイル使用メモリ | 158,956 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-06 19:02:52 |
合計ジャッジ時間 | 3,911 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 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 | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 1 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 | 1 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 1 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 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | AC | 2 ms
5,248 KB |
testcase_36 | AC | 2 ms
5,248 KB |
testcase_37 | AC | 1 ms
5,248 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 1 ms
5,248 KB |
testcase_45 | AC | 2 ms
5,248 KB |
testcase_46 | RE | - |
testcase_47 | AC | 2 ms
5,248 KB |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | AC | 2 ms
5,248 KB |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | WA | - |
testcase_55 | AC | 2 ms
5,248 KB |
testcase_56 | AC | 2 ms
5,248 KB |
ソースコード
#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 th1 = h1; if (th1 == h3) th1 = g(th1); ll cand = f(h2, min(th1, h3)); ll th2 = max(0ll, h2 - cand * d); if (th1 == th2 || th2 == h3) cand = inf; cerr << cand << endl; 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); cerr << h1 << " " << h2 << " " << h3 << endl; ll cand = c1 + c3; if (h1 == h3) { if (g(h1) != h3) cand++; else cand = inf; } cerr << cand << endl; chmin(ans, cand); } if (ans >= inf) ans = -1; cout << ans << endl; }