Problem platonic18
User HighLithop
Submission Time 2026-02-18 16:37:50
Score 0
Max Time N/A
Max Memory N/A

Compile Error

platonic18.cpp:174:2: error: stray ‘#’ in program
174 | }#include <iostream>
| ^
platonic18.cpp:174:3: error: ‘include’ does not name a type
174 | }#include <iostream>
| ^~~~~~~
platonic18.cpp:191:22: error: redefinition of ‘std::vector<std::vector<long long unsigned int> > adj’
191 | vector< vector<ll> > adj; // adj[i] -> {neighbours of i}
| ^~~
platonic18.cpp:18:22: note: ‘std::vector<std::vector<long long unsigned int> > adj’ previously declared here
18 | vector< vector<ll> > adj; // adj[i] -> {neighbours of i}
| ^~~
platonic18.cpp:193:14: error: redefinition of ‘std::pair<long long unsigned int, long long unsigned int> furthest_from(long long unsigned int, long long unsigned int)’
193 | pair<ll, ll> furthest_from(ll node, ll from = -1){
| ^~~~~~~~~~~~~
platonic18.