0_0_39488962_29361.cpp:25:25: error: 'll' does not name a type
25 | struct Edge{int to, nxt;ll len;}e[N * 3];
| ^~
0_0_39488962_29361.cpp: In function 'void solve()':
0_0_39488962_29361.cpp:31:55: error: 'Inf' was not declared in this scope
31 | for (int i = 1;i <= n;++i) head[i] = -1, dis[i] = Inf, vis[i] = 0;
| ^~~
0_0_39488962_29361.cpp:35:13: error: 'addedge' was not declared in this scope; did you mean 'edge'?
35 | addedge(u, v, t);
| ^~~~~~~
| edge
0_0_39488962_29361.cpp:38:36: error: 'addedge' was not declared in this scope; did you mean 'edge'?
38 | for (int j = 2;j <= n;++j) addedge(1, j, 1ll * k * (1 | j));
| ^~~~~~~
| edge
|