Submission #723363

# Submission time Handle Problem Language Result Execution time Memory
723363 2023-04-13T16:09:22 Z t_holl Measures (CEOI22_measures) C++14
0 / 100
1500 ms 448 KB
#include <bits/stdc++.h>

using namespace std;
#define num long long
int N, M; num D;

int compute (vector<num> &res) {
    num ans = 0;

    for (int i = 0; i < res.size(); i ++)
        for (int j = i; j < res.size(); j ++)
            ans = max(ans, D * (j - i) - res[j] + res[i]);

    return ans;
}

int main() {
    cin >> N >> M >> D;

    vector<num> res;
    for (int i = 0; i < N; i ++) {
        num x; cin >> x;
        res.push_back(x);
    }
    for (int i = 0; i < M; i ++) {
        num x; cin >> x;
        res.push_back(x);

        sort(res.begin(), res.end());
        num total = compute(res);
        cout << total / 2;
        if (total % 2 == 1) cout << ".5";

        cout << " ";
    }

    cout << endl;

    return 0;
}

Compilation message

Main.cpp: In function 'int compute(std::vector<long long int>&)':
Main.cpp:10:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   10 |     for (int i = 0; i < res.size(); i ++)
      |                     ~~^~~~~~~~~~~~
Main.cpp:11:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   11 |         for (int j = i; j < res.size(); j ++)
      |                         ~~^~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 25 ms 212 KB Output is correct
2 Correct 22 ms 212 KB Output is correct
3 Correct 23 ms 212 KB Output is correct
4 Correct 25 ms 212 KB Output is correct
5 Correct 22 ms 212 KB Output is correct
6 Correct 24 ms 212 KB Output is correct
7 Correct 23 ms 212 KB Output is correct
8 Incorrect 31 ms 212 KB Output isn't correct
9 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 25 ms 212 KB Output is correct
2 Correct 22 ms 212 KB Output is correct
3 Correct 23 ms 212 KB Output is correct
4 Correct 25 ms 212 KB Output is correct
5 Correct 22 ms 212 KB Output is correct
6 Correct 24 ms 212 KB Output is correct
7 Correct 23 ms 212 KB Output is correct
8 Incorrect 31 ms 212 KB Output isn't correct
9 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1528 ms 448 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1528 ms 448 KB Time limit exceeded
2 Halted 0 ms 0 KB -