| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 83805 | updown1 | Mousetrap (CEOI17_mousetrap) | C++17 | 612 ms | 114808 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define For(i, a, b) for(int i=a; i<b; i++)
#define ffi For(i, 0, N)
#define ffj For(j, 0, M)
#define ffa ffi ffj
#define s <<" "<<
#define c <<" : "<<
#define w cout
#define e endl//"\n"
#define pb push_back
#define mp make_pair
#define a first
#define b second
//#define int ll
//500,000,000 operations
const int MAXN = 1000000;
//Global Variables
int N, T, M, moves[MAXN], toT[MAXN];
bool vis[MAXN];
vector<int> adj[MAXN], inp[MAXN];
void go(int at) {
vis[at] = true;
for (int i: inp[at]) if (!vis[i]) {
adj[at].pb(i);
go(i);
}
}
void go2 (int at) {
if (at == T) {toT[at] = T; return;}
if (adj[at].empty()) return;
vector<int> tim;
for (int i: adj[at]) {
go2(i);
if (toT[i] != -1) {toT[at] = i; moves[at] += moves[i];}
else tim.pb(moves[i]);
}
sort(tim.begin(), tim.end());
For (i, 0, tim.size()) {
if (i%2 == 0) moves[at]++;
else moves[at] += 1 + tim[i];
}
}
main() {
//ifstream cin("test.in");
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> N >> T >> M; T--; M--;
For (i, 1, N) {
int a, b; cin >> a >> b; a--; b--; inp[a].pb(b); inp[b].pb(a);
}
ffi toT[i] = -1;
go(M);
//ffi {w<< i+1 << ":"; for (int j: adj[i]) w s j+1; w<<e;}
go2(M);
w<< moves[M]<<e;
}
컴파일 시 표준 에러 (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... | ||||
