# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
723338 | 2023-04-13T15:48:43 Z | Richem | Measures (CEOI22_measures) | C++14 | 1500 ms | 432 KB |
#include <iostream> #include <vector> #include <algorithm> #define int long long using namespace std; const int MAX_NOMBRE = 1000; int nbDebut, nbAjout, distMin; vector<int> pos; signed main() { cin >> nbDebut >> nbAjout >> distMin; for(int i = 0; i < nbDebut; i++) { int cur; cin >> cur; pos.push_back(cur); } for(int req = 0; req < nbAjout; req++) { int nouv; cin >> nouv; pos.push_back(nouv); sort(pos.begin(), pos.end()); int total = 0; for(int deb = 0; deb < pos.size(); deb++) { for(int fin = deb+1; fin < pos.size(); fin++) { total = max(total, (fin - deb) * distMin - pos[fin] + pos[deb]); } } cout << total/2.0 << endl; } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 24 ms | 340 KB | Output is correct |
2 | Incorrect | 26 ms | 340 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 24 ms | 340 KB | Output is correct |
2 | Incorrect | 26 ms | 340 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1552 ms | 432 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1552 ms | 432 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |