# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
306106 | 2020-09-24T14:17:22 Z | SorahISA | 기지국 (IOI20_stations) | C++17 | 896 ms | 820 KB |
#include "stations.h" #include <bits/stdc++.h> using namespace std; using pii = pair<int, int>; template<typename T> using Prior = priority_queue<T>; template<typename T> using prior = priority_queue<T, vector<T>, greater<T>>; #define X first #define Y second #define ALL(x) (x).begin(), (x).end() #define eb emplace_back #define pb push_back vector<int> label(int n, int k, vector<int> u, vector<int> v) { vector<int> lab(n); iota(ALL(lab), 1); return lab; } int find_next_station(int s, int t, vector<int> c) { if (s > t or s != (t >> __lg(t) - __lg(s))) return s / 2; return c[((t >> __lg(t) - __lg(s) - 1) & 1) + 1]; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 521 ms | 784 KB | Wrong query response. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 522 ms | 820 KB | Wrong query response. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 594 ms | 768 KB | Wrong query response. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 896 ms | 640 KB | Wrong query response. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 596 ms | 768 KB | Wrong query response. |
2 | Halted | 0 ms | 0 KB | - |