Submission #949693

#TimeUsernameProblemLanguageResultExecution timeMemory
949693steveonalexDischarging (NOI20_discharging)C++14
24 / 100
1090 ms8276 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef unsigned long long ull; #define MASK(i) (1ULL << (i)) #define GETBIT(mask, i) (((mask) >> (i)) & 1) #define ALL(v) (v).begin(), (v).end() ll max(ll a, ll b){return (a > b) ? a : b;} ll min(ll a, ll b){return (a < b) ? a : b;} ll LASTBIT(ll mask){return (mask) & (-mask);} int pop_cnt(ll mask){return __builtin_popcountll(mask);} int ctz(ull mask){return __builtin_ctzll(mask);} int logOf(ull mask){return 63 - __builtin_clzll(mask);} // mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count()); mt19937_64 rng(69); ll rngesus(ll l, ll r){return l + (ull) rng() % (r - l + 1);} template <class T1, class T2> bool maximize(T1 &a, T2 b){ if (a < b) {a = b; return true;} return false; } template <class T1, class T2> bool minimize(T1 &a, T2 b){ if (a > b) {a = b; return true;} return false; } template <class T> void printArr(T& container, string separator = " ", string finish = "\n", ostream &out = cout){ for(auto item: container) out << item << separator; out << finish; } template <class T> void remove_dup(vector<T> &a){ sort(ALL(a)); a.resize(unique(ALL(a)) - a.begin()); } const int N = 1e6 + 69; int n; ll a[N]; namespace Sub2{ const int N = 1509; ll dp[N]; void solve(){ reverse(a + 1, a + n + 1); memset(dp, 63, sizeof dp); dp[0] = 0; for(int i = 1; i<=n; ++i){ ll ma = 0; for(int j = i; j>=1; --j){ maximize(ma, a[j]); minimize(dp[i], dp[j-1] + ma * i); } } cout << dp[n] << "\n"; exit(0); } } namespace Sub3{ bool check(){ for(int i = 2; i<=n; ++i) if (a[i] < a[i+1]) return false; return true; } void solve(){ cout << a[1] * n << "\n"; exit(0); } } int main(void){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> n; for(int i= 1; i<=n; ++i) cin >> a[i]; if (Sub3::check()) Sub3::solve(); Sub2::solve(); return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...