| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1058141 | TheQuantiX | 추월 (IOI23_overtaking) | C++17 | 3528 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "overtaking.h"
using namespace std;
using ll = long long;
ll n, m, q, k, x, y, a, b, c, l;
vector<ll> t;
vector<int> w, s;
void init(int L, int N, vector<long long> T, vector<int> W, int X, int M, vector<int> S) {
n = N;
m = M;
l = L;
x = X;
t = T;
w = W;
s = S;
}
long long arrival_time(long long Y) {
vector< pair<ll, ll> > v;
for (int i = 0; i < n; i++) {
if (t[i] != Y) {
v.push_back({t[i], i});
}
}
v.push_back({Y, n});
for (int i = 1; i < m; i++) {
sort(v.begin(), v.end());
// for (auto j : v) {
// cout << j.first << ' ' << j.second << " ";
// }
// cout << '\n';
vector< pair<ll, ll> > e;
ll mx = 0;
ll num = 0;
for (int j = 0; j < v.size(); j++) {
vector< pair<ll, ll> > e2;
ll x1 = v[j].first;
while (v[j].first == x1) {
e2.push_back({v[j].first + (v[j].second == n ? x : w[v[j].second]) * (s[i] - s[i - 1]), v[j].second});
j++;
}
for (auto &i : e2) {
i.first = max(mx, i.first);
if (i.second == n) {
num = i.first;
}
}
for (auto &i : e2) {
mx = max(i.first, mx);
e.push_back(i);
}
j--;
}
v.clear();
for (auto j : e) {
if (j.second == n || j.first != num) {
v.push_back(j);
}
}
}
// cout << '\n';
for (auto i : v) {
if (i.second == n) {
return i.first;
}
}
}컴파일 시 표준 에러 (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... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
