# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
782871 | Lyrically | 팀들 (IOI15_teams) | C++17 | 4041 ms | 13952 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define pii pair<int,int>
#define pb push_back
#define rep(i,n) for(int i=0;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
int read(){int x;scanf("%d",&x);return x;}
void print(int x){printf("%d\n",x);}
void file(string s)
{
freopen((s+".in").c_str(),"r",stdin);
freopen((s+".out").c_str(),"w",stdout);
}
const int mod=998244353;
int n;
struct Item
{
int a,b;
bool operator < (Item c) const
{
return a==c.a?b<c.b:a<c.a;
}
}p[200005];
void init(int N,int A[],int B[])
{
n=N;
rep(i,n){p[i+1].a=A[i];}
rep(i,n){p[i+1].b=B[i];}
sort(p+1,p+n+1);
}
bool can(int m,int t[])
{
sort(t,t+m);
multiset<pii> st;
rep1(i,n)
{
st.insert({p[i].a,p[i].b});
}
vector<pii> v;
rep1(i,n)
{
v.pb({p[i].b,p[i].a});
}
sort(v.begin(),v.end());
rep(i,n){swap(v[i].first,v[i].second);}
int l=0;
//p[i].a<=t[i]<=p[i].b
rep(i,m)
{
if(st.empty()){return 0;}
while(l<n&&v[l].second<t[i])
{
if(st.find(v[l])!=st.end()){st.erase(st.lower_bound(v[l]));}
l++;
}
rep(j,t[i])
{
if(st.empty()){return 0;}
pii x=*st.begin();
if(x.first>t[i]){return 0;}
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... |