Submission #431369

# Submission time Handle Problem Language Result Execution time Memory
431369 2021-06-17T11:23:55 Z saleh Carnival Tickets (IOI20_tickets) C++17
0 / 100
1 ms 296 KB
#include "tickets.h"//
#include <bits/stdc++.h>

#define int long long

using namespace std;


int n, m;
vector<int> chi;

long long find_maximum(int32_t k, vector<vector<int32_t>> x) {
	n = x.size();
	m = x[0].size();
	if (m != 1) return 8;
	long long jav = 0;
	vector<vector<int32_t>> answer;
	for (int i = 0; i < n; i++) {
		vector<int32_t> row(m);
		for (int j = 0; j < m; j++) {
			row[j] = 1;
			chi.push_back(x[i][j]);
		}
		answer.push_back(row);
	}
	allocate_tickets(answer);//
	sort(chi.begin(), chi.end());
	int tmp = chi[chi.size() >> 1];
	for (auto i : chi) jav += abs(i - tmp);
	return jav;
}

//int32_t main() {}//
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Ticket 0 of color 0 is played on invalid day 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB WA in grader: failure to call allocate_tickets
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 292 KB WA in grader: failure to call allocate_tickets
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 296 KB WA in grader: failure to call allocate_tickets
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB WA in grader: failure to call allocate_tickets
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 212 KB WA in grader: failure to call allocate_tickets
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB Ticket 0 of color 0 is played on invalid day 1
2 Halted 0 ms 0 KB -