Submission #723349

#TimeUsernameProblemLanguageResultExecution timeMemory
723349RichemMeasures (CEOI22_measures)C++14
10 / 100
1571 ms3624 KiB
#include <iostream> #include <vector> #include <algorithm> #define int long long using namespace std; 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; fin < pos.size(); fin++) { total = max(total, (fin - deb) * distMin - pos[fin] + pos[deb]); } } cout << total/2; if(total % 2 == 1) { cout << ".5"; } cout << " "; } }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:29:32: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |           for(int deb = 0; deb < pos.size(); deb++) {
      |                            ~~~~^~~~~~~~~~~~
Main.cpp:30:39: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   30 |                for(int fin = deb; fin < pos.size(); fin++) {
      |                                   ~~~~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...