# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1103365 | 2024-10-20T17:20:43 Z | Ahmed57 | 트리 (IOI24_tree) | C++17 | 50 ms | 8356 KB |
#include <bits/stdc++.h> using namespace std; long long cnt = 0; void init(std::vector<int> P, std::vector<int> W){ int deg[P.size()] = {0}; int root = -1; for(int i = 0;i<P.size();i++){ int x = P[i]; if(x==-1){ root = x; }else{ deg[x]++; deg[i]++; } } for(int i = 0;i<P.size();i++){ if(i==root)continue; if(deg[i]==1)cnt++; } } long long query(int L, int R){ return cnt*L+max(0ll,(cnt*L-R)); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 340 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 32 ms | 6848 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 340 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 50 ms | 8276 KB | Output is correct |
2 | Incorrect | 46 ms | 8356 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 50 ms | 8276 KB | Output is correct |
2 | Incorrect | 46 ms | 8356 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 33 ms | 6996 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 340 KB | Output is correct |
2 | Incorrect | 32 ms | 6848 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |