Submission #301906

#TimeUsernameProblemLanguageResultExecution timeMemory
301906VEGAnnCarnival Tickets (IOI20_tickets)C++14
11 / 100
2 ms672 KiB
#include "tickets.h"
#include <bits/stdc++.h>
#define PB push_back
#define sz(x) ((int)x.size())
#define all(x) x.begin(),x.end()
using namespace std;
typedef long long ll;
const int N = 200100;
vector<int> vc;

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

	vector<vector<int>> answer;

	for (int i = 0; i < n; i++) {
		std::vector<int> row(m);
		row[0] = 0;
		answer.push_back(row);
	}

	allocate_tickets(answer);

	ll ans = 0;

	vc.clear();

	for (int i = 0; i < n; i++)
        vc.PB(x[i][0]);

    sort(all(vc));

    for (int i = 0; i < n; i++)
        ans += abs(vc[i] - vc[sz(vc) / 2]);

	return ans;
}

Compilation message (stderr)

tickets.cpp: In function 'long long int find_maximum(int, std::vector<std::vector<int> >)':
tickets.cpp:34:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   34 |     for (int i = 0; i < n; i++)
      |     ^~~
tickets.cpp:37:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   37 |  return ans;
      |  ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...