Submission #928140

# Submission time Handle Problem Language Result Execution time Memory
928140 2024-02-15T21:29:59 Z SUNWOOOOOOOO Carnival Tickets (IOI20_tickets) C++17
0 / 100
1 ms 348 KB
#include "tickets.h"
#include <bits/stdc++.h>
using namespace std;
using LL = long long;

LL find_maximum(int k, vector<vector<int>> x) {
	int n = x.size(), m = x[0].size();
	LL ans = 0;
	for (int i = 0; i < n; i++){
		LL sum = 0;
		for (int j = 0; j < n; j++) sum += llabs(x[j][0] - x[i][0]);
		ans = min(ans, sum);
	}
    vector<vector<int>> S;
    for (int i = 0; i < n; i++) S.push_back({0});
	allocate_tickets(S);
	return ans;
}

Compilation message

tickets.cpp: In function 'LL find_maximum(int, std::vector<std::vector<int> >)':
tickets.cpp:7:20: warning: unused variable 'm' [-Wunused-variable]
    7 |  int n = x.size(), m = x[0].size();
      |                    ^
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Contestant returned 298620960 but the tickets gives a total value of 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB WA in grader: allocate_tickets called with parameter of wrong size
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB WA in grader: allocate_tickets called with parameter of wrong size
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB WA in grader: allocate_tickets called with parameter of wrong size
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB WA in grader: allocate_tickets called with parameter of wrong size
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB WA in grader: allocate_tickets called with parameter of wrong size
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Contestant returned 298620960 but the tickets gives a total value of 0
2 Halted 0 ms 0 KB -