제출 #185496

#제출 시각아이디문제언어결과실행 시간메모리
185496FieryPhoenix로봇 (IOI13_robots)C++11
90 / 100
3023 ms32732 KiB
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <cstdio> #include <map> #include <queue> #include <set> #include <iomanip> #include <deque> #include <cassert> #include <ctime> #include <cstring> #include <cstdlib> #include <chrono> #include <ctime> #include <random> #include <stack> #include <unordered_set> #include <unordered_map> #include <iterator> #include <climits> #include "robots.h" using namespace std; mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); typedef long long ll; typedef long double ld; #define INF 2001001001 #define MOD 1000000007 struct toy{ int w,s; toy(int a, int b){ w=a; s=b; } }; bool cmpW(toy a, toy b){ return a.w<b.w; } bool cmpS(toy a, toy b){ return a.s<b.s; } vector<toy>v; bool taken[1000001]; bool check(int A, int B, int T, int X[], int Y[], int W[], int S[], int t){ v.clear(); for (int i=0;i<T;i++){ taken[i]=false; v.push_back(toy(W[i],S[i])); } sort(v.begin(),v.end(),cmpS); int ind=0; vector<pair<int,int>>v2; set<pair<int,int>>st; //-W, index for (int j=0;j<=(int)v.size();j++){ while (ind<B && (j==(int)v.size() || v[j].s>=Y[ind])){ int left=t; while (!st.empty() && left>0){ taken[st.begin()->second]=true; st.erase(*st.begin()); left--; } ind++; } if (ind>=B || j==(int)v.size()) break; st.insert({-v[j].w,j}); } vector<int>vW; for (int i=0;i<T;i++) if (!taken[i]) vW.push_back(v[i].w); sort(vW.begin(),vW.end()); int avai=0; ind=0; for (int j=0;j<=(int)vW.size();j++){ while (ind<A && (j==(int)vW.size() || vW[j]>=X[ind])){ avai-=min(t,avai); ind++; } if (j==(int)vW.size()) break; avai++; } if (avai==0) return true; else return false; } int putaway(int A, int B, int T, int X[], int Y[], int W[], int S[]){ sort(X,X+A); sort(Y,Y+B); int low=0,high=max(A,B)+1,mid; while (low+1<high){ mid=(low+high)/2; if (check(A,B,T,X,Y,W,S,mid)) high=mid; else low=mid; } if (high==max(A,B)+1) return -1; else return high; }
#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...