Submission #675008

#TimeUsernameProblemLanguageResultExecution timeMemory
675008Danilo21Aliens (IOI16_aliens)C++17
0 / 100
1 ms312 KiB
#include <bits/stdc++.h> #include "aliens.h" #define ll long long #define ld long double #define pb push_back #define fi first #define se second #define en '\n' #define sp ' ' #define tb '\t' #define ri(n) int n; cin >> n #define rl(n) ll n; cin >> n #define rs(s) string s; cin >> s #define rc(c) char c; cin >> c #define rv(v) for (auto &x : v) cin >> x #define pven(v) for (auto x : v) cout << x << en #define pv(v) for (auto x : v) cout << x << sp; cout << en #define all(v) v.begin(), v.end() #define rall(v) v.rbegin(), v.rend() #define yes cout << "YES" << en #define no cout << "NO" << en #define smin(a, b) a = min(a, b) #define smax(a, b) a = max(a, b) #define ssort(a, b) if (a < b) swap(a, b) #define bitcnt(a) (__builtin_popcountll(a)) #define bithigh(a) (63-__builtin_clzll(a)) #define lg bithigh #define highpow(a) (1LL << (ll)lg(a)) using namespace std; const ll LINF = 1e18; const int mxN = 1e3+10, INF = 2e9; ll n, m, dp[mxN][mxN]; array<int, 2> a[mxN]; ll sq(ll x){ return x*x; } ll take_photos(int n, int m, int k, vector<int> r, vector<int> c){ a[0] = {-1, -1}; for (int i = 0; i < n; i++) a[i+1] = {min(r[i], c[i]), max(r[i], c[i])}; sort(a+1, a+n+1); for (int i = 1; i <= n; i++) dp[i][0] = LINF; for (int j = 1; j <= k; j++){ for (int i = 1; i <= n; i++){ dp[i][j] = LINF; for (int t = 0; t < i; t++){ ll cost = sq(a[i][1] - a[t+1][0] + 1) - sq(max(0, a[t][1] - a[t+1][0] + 1)); smin(dp[i][j], dp[t][j] + cost); } } } ll ans = LINF; for (int i = 0; i <= k; i++) smin(ans, dp[n][i]); return ans; }
#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...