09 2017 档案
摘要:一。 安装Anaconda https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/ 二。安装tensorflow conda install --channel https://conda.anaconda.org/HCC tensorflow 这个比
阅读全文
摘要:1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 int n; 5 const int maxn=1e5+2; 6 int s[maxn]; 7 8 void quick_sort(int l,int
阅读全文
摘要:1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 5 struct BigInteger 6 { 7 int len; 8 int arg[2005]; 9 BigInteger(int x = 0)
阅读全文
摘要:【AC】 1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 int n; 5 const int maxn=1e5+2; 6 struct node 7 { 8 int x; 9 int id; 10
阅读全文
摘要:【题意】 现在给出一个三角矩阵,如果0编号的在点(x,y)的话,可以和(x+1,y),(x-1,y),(x+1,y+1),(x-1,y-1)这些点进行交换。 我们每一次只能对0点和其他点进行交换。问最少步数,使得最终变成: 0 1 1 2 2 2 3 3 3 3 4 4 4 4 4 5 5 5 5
阅读全文
摘要:【AC】 1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 5 const int maxn=1e5+2; 6 int a[maxn]; 7 int tmp[maxn]; 8 int n; 9 ll
阅读全文