# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
786726 | vnm06 | 팀들 (IOI15_teams) | C++14 | 4077 ms | 10060 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include<bits/stdc++.h>
using namespace std;
struct uchenik
{
int le, ri;
uchenik() {}
uchenik(int a, int b)
{
le=a;
ri=b;
}
};
bool operator<(uchenik a, uchenik b)
{
if(a.le==b.le) return a.ri<b.ri;
return a.le<b.le;
}
int n;
uchenik t[100005];
void init(int N, int A[], int B[])
{
n=N;
for(int i=0; i<n; i++) t[i].le=A[i], t[i].ri=B[i];
sort(t, t+n);
}
multiset<int> st;
int can(int M, int K[])
{
st.clear();
int id=0;
sort(K, K+M);
for(int i=0; i<M; i++)
{
while(id<n && t[id].le<=K[i])
{
st.insert(t[id].ri);
id++;
}
while(!st.empty() && (*st.begin())<K[i]) st.erase(st.begin());
if(st.size()<K[i]) return 0;
for(int j=0; j<K[i]; j++) st.erase(st.begin());
}
return 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... |