# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1054277 | manhlinh1501 | Bitaro’s Party (JOI18_bitaro) | C++17 | 4 ms | 11356 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using pii = pair<int, int>;
using i64 = long long;
const int MAXN = 2e5 + 5;
const int BLOCK_SIZE = 200;
#define ALL(a) (a).begin(), (a).end()
int N, M, Q;
vector<int> adj[MAXN];
bool is_deleted[MAXN];
vector<pii> dp[MAXN];
int dist[MAXN];
bool vis[MAXN];
vector<pii> merge_vector(vector<pii> a, vector<pii> b) {
int x = 0, y = 0;
for(auto &[x, y] : b)
x++;
vector<pii> ans;
while(x < a.size() and y < b.size() and ans.size() < BLOCK_SIZE) {
while(x < a.size() and vis[a[x].second]) x++;
while(y < b.size() and vis[b[y].second]) y++;
if(x == a.size() or y == b.size()) break;
if(a[x].first > b[y].first) {
vis[a[x].second] = true;
ans.emplace_back(a[x++]);
} else {
vis[b[y].second] = true;
ans.emplace_back(b[y++]);
}
컴파일 시 표준 에러 (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... |