摘要:
1 #include 2 using namespace std; 3 4 struct Vertex{ 5 int start, end; 6 int weight; 7 }; 8 Vertex arr[10000]; 9 int par[10000]; 10 int n, m; 11 int find(int n){ 12 while(par[n... 阅读全文
摘要:
#include using namespace std; struct Vertex{ int start, end; int weight; }; Vertex arr[200010]; int par[200010]; int n, m; long long cost = 0; int find(int n){ while(par[n] != n){ ... 阅读全文
摘要:
#include using namespace std; int main(){ int t; cin >> t; while(t--){ int s1, s2; cin >> s1 >> s2; int arr1[s1+1], arr2[s2+1]; for(int i = 1; i > arr1[i... 阅读全文
摘要:
#include using namespace std; int main(){ int n; int t = 0; while(cin >> n && n){ int arr[n+1]; memset(arr, 0, sizeof(arr)); for(int i = 1; i > arr[i]; ... 阅读全文
摘要:
#include using namespace std; int main(){ int n; while(cin >> n){ int arr[n]; for(int i = 0; i > arr[i]; int dp[n][n+1]; //使用dp[i][j]代表从第i个数字往后合并j位的最大能量 ... 阅读全文
摘要:
一、下载Filezilla Server 官网网址:https://filezilla-project.org 二、安装Filezilla Server Filezilla Server的安装过程很简单,按照默认提示安装即可。 三、配置FTP服务器 1)打开Filezilla Server Host 阅读全文