# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
430967 | Collypso | Boxes with souvenirs (IOI15_boxes) | C++17 | 1 ms | 216 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vt vector
#define pb push_back
#define all(x) (x).begin(), (x).end()
#define sz(x) (int) (x).size()
#pragma GCC optimize ("O3")
#pragma GCC optimize ("O2")
#define F first
#define S second
//#define endl '\n'
//#define int long long
using namespace std;
ll delivery(int N, int K, int L, int p[])
{
if (K == 1)
{
ll ans = 0;
for(int i = 0; i < N; i++) ans += 2 * min(p[i], L - p[i]);
return ans;
}
if (K == N)
{
vt<int> v, pos;
for(int i = 0; i < N; i++) v.pb(p[i]);
sort(all(v)); pos.pb(v[0]);
for(int i = 1; i < N; i++)
if (v[i] != *pos.rbegin()) pos.pb(v[i]);
ll mn = L;
for(int i = 0; i < sz(pos) - 1; i++)
mn = min(mn, 2ll * pos[i] + 2ll * (L - pos[i]));
mn = min(mn, 2ll * (L - pos[0]));
mn = min(mn, 2ll * (*pos.rbegin()));
return mn;
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |