Encoder.cpp:4:1: error: 'vector' does not name a type
vector<int> e[maxn];
^~~~~~
Encoder.cpp:6:14: error: redefinition of 'const double w'
const double w = 1.05;
^
Encoder.cpp:2:14: note: 'const double w' previously defined here
const double w = 1.05;
^
Encoder.cpp: In function 'void dfs(int, int)':
Encoder.cpp:12:18: error: 'e' was not declared in this scope
for (int i : e[v])
^
Encoder.cpp:17:17: error: 'pow' was not declared in this scope
while ((int)pow(w, val) < t - tin)
^~~
Encoder.cpp:19:20: error: 'pow' was not declared in this scope
t = tin + (int)pow(w, val);
^~~
Encoder.cpp:20:20: error: 'll' was not declared in this scope
Code(v, val * (ll)maxn + tin);
^~
Encoder.cpp:20:5: error: 'Code' was not declared in this scope
Code(v, val * (ll)maxn + tin);
^~~~
Encoder.cpp:16:12: warning: unused variable 'kek' [-Wunused-variable]
double kek = 1;
^~~
Encoder.cpp: In function 'void Encode(int, int*, int*)':
Encoder.cpp:28:9: error: 'e' was not declared in this scope
e[v].push_back(u);
^
Device.cpp: In function 'int Answer(long long int, long long int)':
Device.cpp:10:18: error: 'pow' was not declared in this scope
a = b + (int)pow(w, a) - 1;
^~~