結果
問題 | No.176 2種類の切手 |
ユーザー | kimiyuki |
提出日時 | 2016-10-04 17:56:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,237 bytes |
コンパイル時間 | 830 ms |
コンパイル使用メモリ | 83,016 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-21 15:54:56 |
合計ジャッジ時間 | 3,641 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
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 | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
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 | TLE | - |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
testcase_25 | WA | - |
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 | 2 ms
8,448 KB |
ソースコード
#include <iostream> #include <set> #include <queue> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) using namespace std; template <class T> void setmin(T & a, T const & b) { if (b < a) a = b; } template <class T> using reversed_priority_queue = priority_queue<T, vector<T>, greater<T> >; template <typename T> T gcd(T a, T b) { while (a) { b %= a; swap(a, b); } return b; } const int inf = 1e9+7; int main() { int a, b, t; cin >> a >> b >> t; int d = gcd(gcd(a, b), t); a /= d; b /= d; t /= d; int ans = inf; if (b < 100) { set<int> used; reversed_priority_queue<int> que; que.push(0); while (not que.empty()) { int i = que.top(); que.pop(); if (i >= t) { ans = i; break; } if ((t - i) % a == 0) { ans = t; break; } if ((t - i) % b == 0) { ans = t; break; } used.erase(i); if (not used.count(i + a)) { used.insert(i + a); que.push(i + a); } if (not used.count(i + b)) { used.insert(i + b); que.push(i + b); } } } else { for (int i = 0; i <= t; i += b) { setmin(ans, i + (t - i + a-1) / a * a); } } cout << ans * d << endl; return 0; }