# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
778264 | Jarif_Rahman | 팀들 (IOI15_teams) | C++17 | 4080 ms | 28816 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include <bits/stdc++.h>
#define pb push_back
#define f first
#define sc second
using namespace std;
typedef long long int ll;
typedef string str;
int n;
int *A, *B;
void init(int _n, int _A[], int _B[]){
swap(n, _n);
swap(A, _A);
swap(B, _B);
}
int can(int m, int K[]){
vector<vector<int>> rl(n+1);
for(int i = 0; i < n; i++) rl[A[i]].pb(i);
vector<int> projects(n+1, 0);
for(int i = 0; i < m; i++) projects[K[i]]++;
priority_queue<int, vector<int>, greater<int>> pq;
for(int i = 1; i <= n; i++){
for(int j: rl[i]) pq.push(B[j]);
int k = projects[i]*i;
if(k > pq.size()) return 0;
while(k--) pq.pop();
while(!pq.empty() && pq.top() == i) pq.pop();
}
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... |