結果
問題 | No.598 オーバーフローファンタジー |
ユーザー | kosakkun |
提出日時 | 2017-11-24 22:34:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,238 bytes |
コンパイル時間 | 1,059 ms |
コンパイル使用メモリ | 82,260 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-07 17:48:33 |
合計ジャッジ時間 | 1,717 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,944 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <cstdio> #include <cstdlib> #include <numeric> #include <array> #include <set> #include <map> #include <queue> using namespace std; #define REP(i,n) for(int (i)=0;(i)<(int)(n);(i)++) #define RREP(i,n) for(int (i)=(int)(n)-1;i>=0;i--) #define REMOVE(Itr,n) (Itr).erase(remove((Itr).begin(),(Itr).end(),n),(Itr).end()) typedef long long ll; ll N,X,A,B; bool check1(long long x) { ll t = X - x * A; if (t <= 0) return true; return false; } long long BinarySearchMin1(long long low, long long high) { while (high - low > 1){ long long mid = (low + high) / 2; if (check1(mid)) high = mid; else low = mid; } return high; } bool check2(long long x) { ll t = X + x * B; if (t >= (1LL << (N - 1))) return true; return false; } long long BinarySearchMin2(long long low, long long high) { while (high - low > 1){ long long mid = (low + high) / 2; if (check2(mid)) high = mid; else low = mid; } return high; } int main() { cin >> N >> X >> A >> B; cout << min(BinarySearchMin1(0, 1LL << 31LL), BinarySearchMin2(0, 1LL << 31LL)) << endl; return 0; }