# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1008691 | 2024-06-26T16:43:16 Z | aaaaaarroz | 참나무 (IOI23_beechtree) | C++17 | 2000 ms | 604 KB |
#include "beechtree.h" #include <bits/stdc++.h> using namespace std; vector<int>padre; vector<vector<int>>graph; vector<int>sub; void dfs(int nodo){ sub.push_back(nodo); for(int vecino:graph[nodo]){ dfs(vecino); } } vector<int> beechtree(int n, int m, vector<int>P, vector<int>C){ padre=P; graph.resize(n,vector<int>()); for(int i=0;i<n;i++){ if(P[i]!=-1){ graph[P[i]].push_back(i); } } vector<int>ans; for(int i=0;i<n;i++){ sub.clear(); dfs(i); if(sub.size()==1){ ans.push_back(1); continue; } bool posible=false; do{ bool bien=true; map<int,int>repeticiones; for(int i=1;i<sub.size();i++){ if(repeticiones[C[sub[i]]]!=P[sub[i]]){ bien=false; break; } repeticiones[C[sub[i]]]++; } posible|=bien; }while(next_permutation(sub.begin()+1,sub.end())); ans.push_back(posible); } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 604 KB | Output is correct |
2 | Execution timed out | 2095 ms | 348 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | 2nd lines differ - on the 2nd token, expected: '1', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | 2nd lines differ - on the 2nd token, expected: '1', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2067 ms | 348 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | 2nd lines differ - on the 2nd token, expected: '1', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 604 KB | Output is correct |
2 | Execution timed out | 2095 ms | 348 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | 2nd lines differ - on the 2nd token, expected: '1', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 604 KB | Output is correct |
2 | Execution timed out | 2095 ms | 348 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | 2nd lines differ - on the 2nd token, expected: '1', found: '0' |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 604 KB | Output is correct |
2 | Execution timed out | 2095 ms | 348 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |