/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 278ms 22.207 MiB
#2 Accepted 312ms 22.211 MiB
#3 Accepted 275ms 22.211 MiB
#4 Accepted 387ms 22.227 MiB
#5 Accepted 363ms 22.223 MiB
#6 Accepted 348ms 22.367 MiB
#7 Accepted 368ms 22.977 MiB
#8 Accepted 298ms 22.977 MiB
#9 Accepted 299ms 22.832 MiB
#10 Accepted 286ms 22.949 MiB
#11 Accepted 249ms 22.828 MiB
#12 Accepted 339ms 22.988 MiB
#13 Accepted 261ms 22.984 MiB
#14 Accepted 367ms 23.75 MiB
#15 Accepted 365ms 22.371 MiB
#16 Accepted 322ms 22.367 MiB
#17 Accepted 529ms 22.363 MiB
#18 Accepted 384ms 22.367 MiB
#19 Accepted 344ms 22.371 MiB
#20 Accepted 374ms 22.371 MiB

Code

#include <bits/stdc++.h>
#define endl '\n'
#define F first
#define S second
using namespace std;
#define ll long long
#define pb push_back
#define mod 1000000007
// #define int long long
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define CheckBit(x,k)   (x & (1LL << k))
#define SetBit(x,k)     (x |= (1LL << k))
#define ClearBit(x,k)   (x &= ~(1LL << k))
#define LSB(mask)       __builtin_ctzll(mask)
#define MSB(mask)       63-__builtin_clzll(mask) 
#define print(x)    cout << #x << " : " << x << endl
#define error1(x)   cerr << #x << " = " << (x) <<endl
#define coutall(v)  for(auto &it: v) cout<<it<<' '; cout<<endl
#define Abid_52     ios::sync_with_stdio(false);cin.tie(0),cin.tie(0)
#define error2(a,b) cerr<<"( "<<#a<<" , "<<#b<<" ) = ( "<<(a)<<" , "<<(b)<<" )\n"
#define UNIQUE(x)   sort(all(x)), x.erase(unique(all(x)), x.end()), x.shrink_to_fit()
template <typename T, typename U> T ceil(T x, U y) {return (x > 0 ? (x + y - 1) / y : x / y);}
template <typename T, typename U> T floor(T x, U y) {return (x > 0 ? x / y : (x - y + 1) / y);}
const int inf = 1e9;
const int N = 2e5 + 10;
vector<int>divisor[N];
void div(){
    for(int i=1; i<N; i++)
    {
        for(int j=i; j<N; j+=i)
        {
            divisor[j].push_back(i);
        }
    }
}
void solve()
{
    int n, m;
    cin >> n >> m;
    vector<int> v(n);
    for (int i = 0; i < n; i++)
    {
        cin >> v[i];
    }
    vector<int>dp(n, 0), cost(N, inf);
    for(auto it : divisor[v[0]]){
        cost[it] = v[0] / it;
    }
    for(int i = 1; i < n; i++){
        dp[i] = dp[i - 1] + m;
        for(auto it : divisor[v[i]]){
            dp[i] = min(dp[i], cost[it]);
        }

        for(auto it : divisor[v[i]]){
            cost[it] = min(cost[it], dp[i] + v[i] / it);
        }
    }

    cout << dp[n - 1] << endl;
}

int32_t main()
{
    Abid_52;
    int t = 1;
    cin >> t;
    div();
    for (int tc = 1; tc <= t; ++tc)
    {
        // cout << "Case " << tc << ": ";
        solve();
    }
}

Information

Submit By
Type
Submission
Problem
P1099 Which way to go
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-05 07:11:47
Judged At
2024-11-11 02:33:17
Judged By
Score
100
Total Time
529ms
Peak Memory
23.75 MiB