Codeforces Round #244 (Div. 2)??Checkposts_html/css_WEB-ITnose
程序员文章站
2022-04-19 11:37:15
...
题目链接
题意:
给定n个点,每个点有一个权值的有向图。现在需要选定一些点,使得这些点权值和最小,且满足:如果i能到达j且j能到达i,那么i、j可以只选一个 分析:
强联通模板题
给定n个点,每个点有一个权值的有向图。现在需要选定一些点,使得这些点权值和最小,且满足:如果i能到达j且j能到达i,那么i、j可以只选一个
强联通模板题
//使用时只更新G完成构图//scc_cnt从1开始计数//pre[]表示点在DFS树中的先序时间戳//lowlink[]表示当前点和后代能追溯到的最早祖先的pre值//sccno[]表示点所在的双连通分量编号//vectorG保存每个点相邻的下一个点序号//stack S是算法用到的栈const int MAXV = 310000;vector G[MAXV];int pre[MAXV], lowlink[MAXV], sccno[MAXV], dfs_clock, scc_cnt;stack S;void init(int n){ REP(i, n) G[i].clear();}void dfs(int u){ pre[u] = lowlink[u] = ++dfs_clock; S.push(u); for(int i = 0; i vt[MAXV];int Min[MAXV];int main(){// freopen("in.txt", "r", stdin); int n, e, a, b; while (~RI(n)) { init(n); REP(i, MAXV) vt[i].clear(); CLR(Min, INF); REP(i, n) RI(cost[i]); RI(e); REP(i, e) { RII(a, b); a--; b--; G[a].push_back(b); } find_scc(n); REP(i, n) { int no = sccno[i]; vt[no].push_back(i); Min[no] = min(Min[no], cost[i]); } LL v = 0, ans = 1; REP(i, MAXV) { if (vt[i].size() > 0) { int cnt = 0; REP(j, vt[i].size()) { if (cost[vt[i][j]] == Min[i]) cnt++; } ans *= cnt; ans %= MOD; v += Min[i]; } } cout
下一篇: PHP链表操作简单示例
推荐阅读
-
Codeforces Round #595 (Div. 3)D1D2 贪心 STL
-
Codeforces Round #655 (Div. 2) A. Omkar and Completion
-
Codeforces Round #487 (Div. 2)
-
Codeforces Round #649 (Div. 2)-B. Most socially-distanced subsequence(思维)
-
Codeforces Round #649 (Div. 2) C-Ehab and Prefix MEXs
-
Educational Codeforces Round 71 (Rated for Div. 2)E. XOR Guessing
-
Codeforces Round #659 (Div. 2) A. Common Prefixes(字符串,思维)
-
Codeforces Round #610 (Div. 2)
-
Codeforces Round #670 (Div. 2)
-
Codeforces Round #665 (Div. 2)