Submission #301911

#TimeUsernameProblemLanguageResultExecution timeMemory
301911VEGAnnCarnival Tickets (IOI20_tickets)C++14
11 / 100
2 ms768 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() #define i2 array<int,2> using namespace std; typedef long long ll; const int N = 200100; vector<int> vc; vector<i2> elms; 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); for (int j = 0; j < m; j++) row[j] = j; answer.push_back(row); } allocate_tickets(answer); ll ans = 0; for (int j = 0; j < m; j++) { vc.clear(); for (int i = 0; i < n; i++) vc.PB(x[i][j]); sort(all(vc)); for (int i = 0; i < n; i++) ans += abs(vc[i] - vc[sz(vc) / 2]); } 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...