Submission #426584

#TimeUsernameProblemLanguageResultExecution timeMemory
426584SAADRobots (IOI13_robots)C++17
53 / 100
284 ms19508 KiB
#define F first #define S second #define rep(i,a,b) for(int i=a;!(a==b&&i!=b)&&((i<=b&&b>=a)||(i>=b&&a>=b));i+=(a<=b?1:-1)) #define pb push_back #define Fbitl __builtin_ffs #define bit1 __builtin_popcount //#include <bits/stdc++.h> #include <iostream> #include <math.h> #include <algorithm> #include <string.h> #include <vector> #include <queue> #include <map> #include <unordered_map> #include "robots.h" using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; typedef pair<string, string> pss; typedef vector<int> vi; typedef vector<vi> vvi; typedef vector<pii> vii; typedef vector<ll> vl; typedef vector<vl> vvl; int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]) { vector <pair<int, int>> x; for (int i = 0; i < T; i++) x.pb({ W[i],S[i] }); int c = A, res = 0; sort(x.begin(), x.end()); sort(X, X + A); sort(Y, Y + B); bool th = true; int TT = T; while (TT && th) { c = A; th = false; for (int i = T - 1; i >= 0 && c; i--) { if (x[i].F < X[c - 1] && x[i].F != 0) { x[i] = { 0,0 }; c--; TT--; th = true; } } c = B; for (int i = T - 1; i >= 0 && c; i--) { if (x[i].S < Y[c - 1] && x[i].F != 0) { x[i] = { 0,0 }; c--; TT--; th = true; } } res++; sort(X, X + A); sort(Y, Y + B); } return (th ? res : -1); }
#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...