結果
問題 | No.281 門松と魔法(1) |
ユーザー | k |
提出日時 | 2021-03-15 22:49:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 1,000 ms |
コード長 | 1,496 bytes |
コンパイル時間 | 2,248 ms |
コンパイル使用メモリ | 204,160 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 11:16:37 |
合計ジャッジ時間 | 3,644 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 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 | 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 | 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 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | AC | 2 ms
5,248 KB |
testcase_26 | AC | 2 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 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 3 ms
5,248 KB |
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 | 2 ms
5,248 KB |
testcase_38 | AC | 2 ms
5,248 KB |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | AC | 2 ms
5,248 KB |
testcase_42 | AC | 2 ms
5,248 KB |
testcase_43 | AC | 2 ms
5,248 KB |
testcase_44 | AC | 2 ms
5,248 KB |
testcase_45 | AC | 2 ms
5,248 KB |
testcase_46 | AC | 2 ms
5,248 KB |
testcase_47 | AC | 2 ms
5,248 KB |
testcase_48 | AC | 2 ms
5,248 KB |
testcase_49 | AC | 2 ms
5,248 KB |
testcase_50 | AC | 2 ms
5,248 KB |
testcase_51 | AC | 2 ms
5,248 KB |
testcase_52 | AC | 2 ms
5,248 KB |
testcase_53 | AC | 2 ms
5,248 KB |
testcase_54 | AC | 2 ms
5,248 KB |
testcase_55 | AC | 2 ms
5,248 KB |
testcase_56 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const long long INF = 1LL<<50; long long minimize(int d, vector<int> h) { long long ret = 0; if (h[0] == h[2]) { h[0] = max(h[0] - d, 0); ++ret; } if (h[1] < min(h[0], h[2])) { return ret; } int t = (h[1] - min(h[0], h[2])) / d + 1; ret += t; h[1] = max(h[1] - t * d, 0); if (h[0] != h[1] && h[1] != h[2] && h[2] != h[0] && h[1] < min(h[0], h[2])) return ret; return INF; } long long maximize(int d, vector<int> h) { long long ret = 0; if (h[0] >= h[1]) { int t = (h[0] - h[1]) / d + 1; ret += t; h[0] = max(0, h[0] - t * d); } if (h[2] >= h[1]) { int t = (h[2] - h[1]) / d + 1; ret += t; h[2] = max(0, h[2] - t * d); } if (h[0] == h[2]) { h[0] = max(h[0] - d, 0); ++ret; } if (h[0] != h[1] && h[1] != h[2] && h[2] != h[0] && h[1] > max(h[0], h[2])) return ret; return INF; } long long zero(int d, vector<int> h) { if (h[0] == h[1] || h[1] == h[2] || h[2] == h[0]) return -1; if (h[1] < min(h[0], h[2]) || h[1] > max(h[0], h[2])) return 0; return -1; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int d; vector<int> h(3); cin >> d; for (int i = 0; i < 3; i++) cin >> h[i]; if (d == 0) { cout << zero(d, h) << endl; } else { long long ret = min(minimize(d, h), maximize(d, h)); if (ret == INF) cout << -1 << endl; else cout << ret << endl; } return 0; }