# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
756651 | minhcool | 선물상자 (IOI15_boxes) | C++17 | 2 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#define local
#ifndef local
#include "boxes.h"
#endif
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using namespace std;
#define ll long long
#define fi first
#define se second
#define pb push_back
#define mp make_pair
typedef pair<ll, ll> ii;
typedef pair<ii, ll> iii;
typedef pair<ii, ii> iiii;
const ll N = 3e5 + 5;
const ll oo = 1e18 + 7, mod = 1e9 + 7;
mt19937 rng(1);
ll rnd(ll l, ll r){
ll temp = rng() % (r - l + 1);
return abs(temp) + l;
}
ll cnt;
ll le[N], ri[N];
ll tol1[N], tol2[N];
ll n, k, l;
ll positions[N];
ll delivery(int N, int K, int L, int positionss[]){
for(int i = 0; i < N; i++) positions[i] = positionss[i];
n = N, k = K, l = L;
for(ll i = 0; i < n; i++) cnt += (positions[i] <= (l/2));
for(ll i = 0; i < cnt; i++){
tol1[i] = (i >= k ? tol1[i - k] : 0) + positions[i] * 2;
}
for(ll i = 0; i < (n - cnt); i++){
tol2[i] = (i >= k ? tol2[i - k] : 0) + (l - positions[n - 1 - i]) * 2;
}
ll answer = oo;
for(ll i = 0; i < cnt; i++){
for(ll j = 0; j < (n - cnt); j++){
answer = min(answer, tol1[i] + tol2[j] + ((n - 2 - i - j + (k - 1)) / k) * l);
// cout << i << " " << j << " " << tol1[i] << " " << tol2[j] << "\n";
}
}
return answer;
}
#ifdef local
void process(){
ll n, k, l;
cin >> n >> k >> l;
ll arr[n];
for(ll i = 0; i < n; i++) cin >> arr[i];
cout << delivery(n, k, l, arr) << "\n";
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
ll t = 1;
//cin >> t;
while(t--) process();
}
#endif
컴파일 시 표준 에러 (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... |