# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
400395 | nikatamliani | Bitaro’s Party (JOI18_bitaro) | C++14 | 1398 ms | 95172 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void maxi(int &x, int y) {
if(x < y) x = y;
}
const int C = 100;
bool vis[100005];
void merge(vector<pair<int, int>> &a, const vector<pair<int, int>> &b) {
vector<pair<int, int>> c;
int n = (int)a.size(), m = (int)b.size();
for(int i = 0, j = 0; i < n || j < m;) {
if((int)c.size() == C) break;
if(i < n && vis[a[i].second]) { ++i; continue; }
if(j < m && vis[b[j].second]) { ++j; continue; }
if(j == m || (i < n && a[i].first > b[j].first+1)) {
c.push_back(a[i]);
vis[a[i++].second] = 1;
} else {
c.push_back({b[j].first+1, b[j].second});
vis[b[j++].second] = 1;
}
}
for(const auto &p : c) vis[p.second] = 0;
a = c;
}
int main() {
ios::sync_with_stdio(0); cin.tie(0);
int n, m, q;
cin >> n >> m >> q;
vector<vector<int>> g(n+1);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |