結果
問題 | No.176 2種類の切手 |
ユーザー |
![]() |
提出日時 | 2018-11-23 14:45:42 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 26 ms / 1,000 ms |
コード長 | 867 bytes |
コンパイル時間 | 2,141 ms |
コンパイル使用メモリ | 194,600 KB |
最終ジャッジ日時 | 2025-01-06 17:12:23 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
#include<bits/stdc++.h>using namespace std;using Int = long long;template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}//INSERT ABOVE HEREsigned main(){Int a,b,t;cin>>a>>b>>t;if(a>=t){cout<<a<<endl;return 0;}const Int INF = 1e15;if(b>=100){Int ans=INF;for(Int i=0;i-b<=t;i+=b){if(i>=t) chmin(ans,i);else chmin(ans,i+(t-i+a-1)/a*a);}cout<<ans<<endl;return 0;}const Int MAX = 1e7 + 1000;if(t<=1e7){vector<signed> dp(MAX,0);dp[0]=1;for(Int i=0;i+b<MAX;i++)dp[i+a]|=dp[i],dp[i+b]|=dp[i];for(Int i=t;i<MAX;i++){if(dp[i]){cout<<i<<endl;break;}}return 0;}Int g=__gcd(a,b);cout<<(t+g-1)/g*g<<endl;return 0;}