Submission #400205

#TimeUsernameProblemLanguageResultExecution timeMemory
400205rocks03Aliens (IOI16_aliens)C++14
0 / 100
1 ms300 KiB
#include<bits/stdc++.h> using namespace std; #define ll long long #define pii pair<int, int> #define pll pair<ll, ll> #define ff first #define ss second #define pb push_back #define SZ(x) ((int)(x).size()) #define all(x) x.begin(), x.end() #define debug(x) cout << #x << ": " << x << " " #define nl cout << "\n" #define rep(i, a, b) for(int i = (a); i < (b); i++) #define per(i, a, b) for(int i = (a); i >= (b); i--) mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); long long take_photos(int N, int M, int K, vector<int> X, vector<int> Y){ vector<int> v[M + 1]; rep(i, 0, N){ v[X[i] + 1].pb(Y[i]); v[Y[i] + 1].pb(X[i]); } vector<ll> dp(M + 1, LLONG_MAX); dp[0] = 0; rep(i, 1, M + 1){ if(SZ(v[i]) == 0){ dp[i] = dp[i - 1]; continue; } int l = 0; per(j, i - 1, 0){ int l2 = i - j; while(l < l2){ for(int co : v[i - l]) l2 = max(l2, i - co); l++; } ll cost = l; cost = cost * cost; dp[i] = min(dp[i], dp[j] + cost); } } return dp[M]; }
#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...