Submission #300308

# Submission time Handle Problem Language Result Execution time Memory
300308 2020-09-17T05:02:47 Z easrui Carnival Tickets (IOI20_tickets) C++14
0 / 100
1 ms 256 KB
#include "tickets.h"
#include <bits/stdc++.h>
#define va first
#define vb second
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<pii,int> ppi;
typedef pair<int,pii> pip;

const int MN = 1505;
const int MOD = 1e9+7;
const int INF = 1e9;

vector<int> T;
int a[MN],s[MN];

bool cmp(int x, int y)
{
	return s[x]<s[y];
}

ll find_maximum(int k, vector<vector<int>> x) {
	int n = x.size();
	int m = x[0].size();
	vector<vector<int>> ans;

	for(int i=0; i<n; i++) a[i] = i;
	for(int i=0; i<n; i++) s[i] = x[i][m-1]-x[i][0];
	sort(a,a+n,cmp);

	vector<int> row(m,-1);
	for(int i=0; i<m; i++){
		ans.push_back(row);
	}

	for(int i=0; i<m; i++){
		if(i<n/2){
			ans[a[i]][0] = 0;
			T.push_back(x[a[i]][0]);
		}
		else{
			ans[a[i]][m-1] = 0;
			T.push_back(x[a[i]][m-1]);
		}
	}

	ll sum = 0;
	for(int i=0; i<m; i++){
		sort(all(T));
		for(int j:T) sum += abs(T[n/2]-j);
	}

	allocate_tickets(ans);
	return sum;
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 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 1 ms 256 KB Contestant returned 860858182 but the tickets gives a total value of 1721716364
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB There is no ticket of color 0 on day 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 256 KB There is no ticket of color 0 on day 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB There is no ticket of color 0 on day 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB There is no ticket of color 0 on day 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB WA in grader: allocate_tickets called with parameter of wrong size
2 Halted 0 ms 0 KB -