09 2017 档案

摘要:一。 安装Anaconda https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/ 二。安装tensorflow conda install --channel https://conda.anaconda.org/HCC tensorflow 这个比 阅读全文
posted @ 2017-09-24 22:52 shulin15 阅读(151) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2017-09-18 20:17 shulin15 阅读(140) 评论(0) 推荐(0) 编辑
摘要: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) 阅读全文
posted @ 2017-09-17 19:50 shulin15 阅读(135) 评论(0) 推荐(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 阅读全文
posted @ 2017-09-10 16:41 shulin15 阅读(519) 评论(0) 推荐(0) 编辑
摘要:【题意】 现在给出一个三角矩阵,如果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 阅读全文
posted @ 2017-09-06 20:05 shulin15 阅读(213) 评论(0) 推荐(0) 编辑
摘要:【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 阅读全文
posted @ 2017-09-03 16:48 shulin15 阅读(197) 评论(0) 推荐(0) 编辑