# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
517050 | 2022-01-22T12:47:12 Z | Ai7081 | 기지국 (IOI20_stations) | C++17 | 3000 ms | 2097156 KB |
#include <bits/stdc++.h> using namespace std; const int N = 1005; int cnt; vector<int> adj[N], ret; void dfs1(int v, int p) { ret[v] = cnt++; for (auto to : adj[v]) { if (to != p) { dfs1(to, v); } } return; } vector<int> label(int n, int k, vector<int> u, vector<int> v) { for (int i=0; i<(int)u.size(); i++) { adj[u[i]].push_back(v[i]); adj[v[i]].push_back(u[i]); } for (int i=0; i<n; i++) { if (adj[i].size() == 1) { ret.assign(n, 0); cnt = 0; dfs1(i, i); return ret; } } } int find_next_station(int s, int t, vector<int> c) { return (s < t) ? s+1 : s-1; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1105 ms | 2097156 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3038 ms | 372 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1334 ms | 2097156 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 460 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2329 ms | 2097156 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |