摘要:
static double luby(double y, int x) { // Find the finite subsequence that contains index 'x', and the // size of that subsequence: int size, seq; for 阅读全文
摘要:
#include<iostream> #include<vector> using namespace std; const int N = 1000; struct { int to; int w; int next; }edge[N]; int head[N]; void add_edge(in 阅读全文