結果
問題 | No.555 世界史のレポート |
ユーザー | kkty |
提出日時 | 2017-11-04 17:15:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 969 bytes |
コンパイル時間 | 1,595 ms |
コンパイル使用メモリ | 166,632 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-02 22:46:08 |
合計ジャッジ時間 | 5,343 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 5 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 7 ms
5,376 KB |
testcase_06 | AC | 9 ms
5,376 KB |
testcase_07 | AC | 11 ms
5,376 KB |
testcase_08 | AC | 13 ms
5,376 KB |
testcase_09 | AC | 16 ms
5,376 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define REP(i,n) FOR(i,0,n) #define FOR(i,a,b) for(ll i=a;i<b;i++) #define PB push_back #define LB lower_bound #define UB upper_bound #define PQ priority_queue #define UM unordered_map #define ALL(a) (a).begin(),(a).end() #define MOD 1000000007 typedef vector<ll> vi; typedef vector<vector<ll>> vvi; const ll INF = (1ll << 30); typedef pair<ll,ll> pii; struct Edge{ ll s,t,c; }; typedef vector<vector<ll>> Graph; typedef vector<pii> vpii; unordered_set<ll> get(ll a) { unordered_set<ll> s; for(ll i=1;i*2<=a;i++) { if(a%i==0) s.insert(i); } unordered_set<ll> ret; for(ll i:s) { ret.insert(i); ret.insert(a/i); } return ret; } int main() { ll N,C,V; cin>>N>>C>>V; vi A(2*N+1,INF); A[1]=0; FOR(i,2,2*N+1) { unordered_set<ll> v=get(i); for(ll j:v) { A[i]=min(A[i],A[j]+C+V*(i/j-1)); } } ll ans=INF; FOR(i,N,2*N+1) ans=min(ans,A[i]); cout<<ans<<endl; }