import java.io.*; import java.util.*; class Edge{ int o, t, a, b; public Edge(int o, int t, int a, int b){ this.o = o; this.t = t; this.a = a; this.b = b; } } public class Main{ static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); static final int N = 1010, mod = (int) 1e9 + 7; static int[] p = new int[N]; static int n, m; static int[][] c = new int[N][N]; static Edge[] edges; public static void initC(){ for (int i = 0; i < N; i ++ ) for (int j = 0; j <= i; j ++ ){ if (j == 0) c[i][j] = 1; else c[i][j] = (c[i - 1][j] + c[i - 1][j - 1]) % mod; } } public static int find(int u){ if (p[u] != u){ p[u] = find(p[u]); } return p[u]; } public static void union(int i, int j){ p[find(i)] = find(j); } public static void main(String[] args) throws IOException{ String[] ss = br.readLine().split(" "); n = Integer.parseInt(ss[0]); m = Integer.parseInt(ss[1]); edges = new Edge[m]; initC(); for (int i = 0; i <= n; i ++ ) p[i] = i; for (int i = 0 ; i < m; i ++ ){ String[] strs = br.readLine().split(" "); int o = Integer.parseInt(strs[0]), t = Integer.parseInt(strs[1]), a = Integer.parseInt(strs[2]), b = Integer.parseInt(strs[3]); edges[i] = new Edge(o, t, a, b); } Arrays.sort(edges, (x, y) -> { return c[y.a][y.b] - c[x.a][x.b]; }); int cnt = 0, ans = 0; for (int i = 0; i < m; i ++ ){ Edge e = edges[i]; if (find(e.o) == find(e.t)) continue; union(e.o, e.t); ans = (ans + c[e.a][e.b]) % mod; cnt ++ ; } if (cnt != (n - 1)) bw.write(-1 + ""); else bw.write(ans + ""); bw.flush(); } }
点赞 评论

相关推荐

菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
牛客717484937号:双飞硕没实习挺要命的
点赞 评论 收藏
分享
头像
11-27 14:28
长沙理工大学
刷算法真的是提升代码能力最快的方法吗?&nbsp;刷算法真的是提升代码能力最快的方法吗?
牛牛不会牛泪:看你想提升什么,代码能力太宽泛了,是想提升算法能力还是工程能力? 工程能力做项目找实习,算法也分数据结构算法题和深度学习之类算法
点赞 评论 收藏
分享
牛客网
牛客企业服务