纪念秋招最后一次笔试 第一题: #include <algorithm> #include <set> #include <stdio.h> #include <string.h> #include <stack> typedef long long LL; #define N 100010 using namespace std; int to[N], we[N]; int is_true[N], vis[N]; int dfs(int u) { vis[u] = 1; { int v = to[u], w = ...