# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
772392 | phoebe | 팀들 (IOI15_teams) | C++17 | 4062 ms | 136308 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "teams.h"
using namespace std;
#define ll long long
#define pii pair<int, int>
#define F first
#define S second
#define FOR(i, n) for (int i = 0; i < n; i++)
#define PB push_back
const int maxn = 5e5 + 10;
int n;
map<int, vector<pii>> add, addnt;
bool cmp(pii a, pii b){
return a.S < b.S;
}
void init(int N, int A[], int B[]){
n = N;
FOR(i, n){
add[A[i]].PB({B[i], i});
addnt[B[i]].PB({B[i], i});
}
}
int can(int m, int k[]){
map<int, int> need;
FOR(i, m) need[k[i]] += k[i];
set<pii> s;
for (int i = 1; i <= n; i++){
for (auto x : add[i]) s.insert(x);
if (s.size() < need[i]) return 0;
FOR(_, need[i]) s.erase(s.begin());
for (auto x : addnt[i]){
if (s.count(x)) s.erase(x);
}
}
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... |