# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
262136 | amiratou | 팀들 (IOI15_teams) | C++14 | 4081 ms | 364200 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long
int n,a[100005],b[100005];
vector<int> vec[100005];
void init(int N, int A[], int B[]) {
n=N;
for (int i = 0; i < n; ++i)
{
a[i]=A[i];
b[i]=B[i];
}
for (int i = 1; i <= n; ++i)
for (int j = 0; j < n; ++j)
if(a[j]<=i && i<=b[j])vec[i].pb(j);
}
int can(int M, int K[]) {
sort(K,K+M);
srand(time(0));
for (int i = 0; i < M; ++i)
{
set<int> myset;
ll sum=0;
for (int j = i; j < M; ++j)
{
sum+=K[j];
for(auto it:vec[K[j]])
myset.insert(it);
if(myset.size()<sum)return 0;
}
}
for (int i = 0; i < M; ++i)
{
set<int> myset;
ll sum=0;
for (int j = 0; j < M; ++j)
{
if(rand()&1)continue;
sum+=K[j];
for(auto it:vec[K[j]])
myset.insert(it);
if(myset.size()<sum)return 0;
}
}
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... |