# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
329724 | figter001 | 팀들 (IOI15_teams) | C++17 | 4062 ms | 16468 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include <bits/stdc++.h>
using namespace std;
#define all(x) (x).begin(), (x).end()
#define fast ios::sync_with_stdio(false);cin.tie(0);
typedef long long ll;
typedef long double ld;
typedef unsigned long long ull;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
vector<pair<int,int>> s;
int n;
void init(int N, int A[], int B[]) {
n = N;
for(int i=0;i<n;i++){
s.push_back({A[i], B[i]});
}
sort(all(s) , [](pair<int,int> a,pair<int,int> b){
if(a.second == b.second)
return a.first < b.first;
return a.second < b.second;
});
}
int can(int M, int K[]) {
sort(K,K+M);
int id = 0,cnt=0;
for(int i=0;i<s.size();i++){
if(id == M)break;
cnt += (s[i].first <= K[id] && s[i].second >= K[id]);
if(cnt == K[id]){
cnt = 0;
id++;
}
}
return id == M;
}
컴파일 시 표준 에러 (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... |