# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
816301 | makanhulia | 로봇 (IOI13_robots) | C++17 | 1432 ms | 19036 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"robots.h"
#include<bits/stdc++.h>
using namespace std;
int putaway(int a, int b, int t, int x[], int y[], int w[], int s[]) {
vector<pair<int, int>> toy(t);
for(int i=0; i<t; i++) toy[i]={w[i], s[i]};
sort(toy.begin(), toy.end());
sort(x, x+a); sort(y, y+b);
auto can = [&](int lim) -> bool {
int idx=0;
priority_queue<int> pq;
for(int i=0; i<a; i++) {
while(idx<t && toy[idx].first<x[i]) pq.push(toy[idx++].second);
for(int j=0; j<lim && !pq.empty(); j++) pq.pop();
}
while(idx<t) pq.push(toy[idx++].second);
for(int i=b-1; i>=0; i--) {
for(int j=0; j<lim && !pq.empty(); j++) {
if(pq.top()>=y[i]) return 0;
pq.pop();
}
}
return pq.empty();
};
int l=1, r=t, ans=t+1;
while(l<=r) {
int mid=l+r>>1;
if(can(mid)) r=mid-1, ans=mid;
else l=mid+1;
}
return (ans<=t ? ans : -1);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |