Submission #54045

# Submission time Handle Problem Language Result Execution time Memory
54045 2018-07-02T08:57:50 Z robert Boxes with souvenirs (IOI15_boxes) C++14
0 / 100
2 ms 376 KB
#include <iostream>
#include <algorithm>

using namespace std;

int dtz(int a, int L){
	return min(a, L-a);
}

int delivery(int N, int K, int L, int *p){
	p[N] = 0;
	sort(p, p+N);
	p[N+1] = 0;
	long long ans = 0;
	for(int n=0; n<=N; n++){
		ans = min(ans, (long long)p[n] + (long long)(L-p[n+1]));
	}
	return ans;
}

Compilation message

boxes.cpp: In function 'int delivery(int, int, int, int*)':
boxes.cpp:18:9: warning: conversion to 'int' from 'long long int' may alter its value [-Wconversion]
  return ans;
         ^~~
boxes.cpp:10:25: warning: unused parameter 'K' [-Wunused-parameter]
 int delivery(int N, int K, int L, int *p){
                         ^
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2 ms 376 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 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -