# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
102207 | 2019-03-23T15:30:13 Z | Leonardo_Paes | Boxes with souvenirs (IOI15_boxes) | C++11 | 3 ms | 384 KB |
#include <bits/stdc++.h> using namespace std; const int MAXN = 2e7 + 10; //int n, k, l, vet[MAXN]; long long delivery(int N, int K, int L, int positions[MAXN]){ long long x = N, sum=0; int ini=0, fim=N-1; for(int i=x; x>1; x-=2){ if(ini+(K-1)<=N-1 and fim-(K-1)>=0 and (2*(positions[ini+(K-1)]))<(2*(L-positions[fim-(K-1)]))){ sum+=(long long)2*(long long)(positions[ini+(K-1)]); ini+=K; } else if (2*(L-positions[fim-(K-1)]) < L){ sum+=(long long)2*(long long)(L-positions[fim-(K-1)]); fim-=K; } else{ sum+=L; ini+=K; } } sum+=(long long)min(2*positions[ini], 2*(L-positions[fim])); return sum; } /* int main(){ cin >> n >> k >> l; for(int i=0; i<n; i++){ cin >> vet[i]; } cout << delivery(n, k, l, vet) << endl; } */
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Incorrect | 2 ms | 384 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 384 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 384 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Incorrect | 2 ms | 384 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Incorrect | 2 ms | 384 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Incorrect | 2 ms | 384 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |