上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页
摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int s,n,m; 7 int vis[105][105][105]; 8 9 struct node 10 { 11 int s,n,m,step; 12 }; 13 int check(int x,int y,... 阅读全文
posted @ 2018-04-29 17:30 ouyang_wsgwz 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int mark[205][205]; 7 char map[205][205]; 8 int fx[4][2]={{1,0},{-1,0},{0,1},{0,-1}}; 9 int num[205][205],num1[205][205],... 阅读全文
posted @ 2018-04-29 15:14 ouyang_wsgwz 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 struct node{ 8 int cur, step; 9 }now, Next; 10 int vis[10001], star, finish, prime[10001] = { 0, 0, 1 }; 11 1... 阅读全文
posted @ 2018-04-29 15:08 ouyang_wsgwz 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 using namespace std; 4 5 int n; 6 bool ok; 7 8 void dfs(unsigned long long x, int y, int k){ 9 if(ok == true) return ; 10 if(x % y == 0){ 11 cout ... 阅读全文
posted @ 2018-04-29 14:31 ouyang_wsgwz 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int n, m; 7 const int maxn = 105; 8 string s[maxn]; 9 int f[8][2] = { {0, 1},{1, 0},{-1, 0},{0, -1},{1, 1},{-1, -1},{1, -1},{-... 阅读全文
posted @ 2018-04-29 13:51 ouyang_wsgwz 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int a[150000]; 8 int b[150000]; 9 int dp[1005][1005]; 10 //dp[i][j] 前i个人从前j个药匙中到达终点的最小时间 11 12 int main() 13 { 14... 阅读全文
posted @ 2018-04-28 23:44 ouyang_wsgwz 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int Map[6][6],vis[6][6],pre[110]; 8 //pre[]记录每个状态的前一个状态 9 struct Cam 10 { 11 int x,y; 12 }List[110]; 13 14 int Di... 阅读全文
posted @ 2018-04-28 16:11 ouyang_wsgwz 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 为了解决字符串匹配问题 给你两个字符串,寻找其中一个字符串是否包含另一个字符串,如果包含,返回包含的起始位置。 模板: KMP求子串出现的次数 阅读全文
posted @ 2018-04-19 21:14 ouyang_wsgwz 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 将.py 源代码转换成无需源代码的可执行文件 首先,PyInstaller是第三方库,需要下载额外安装(安装第三方库需要使用pip工具) 步骤: 1.用管理员运行cmd命令行 "pip instal pyinstaller" 2.若提示pip版本过低,需要升级pip 输入"python -m pip 阅读全文
posted @ 2018-04-18 20:41 ouyang_wsgwz 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 using namespace std; 4 5 typedef long long LL; 6 const int maxn = 2; 7 const LL m = 1000000009; 8 9 struct Matrix 10 { 11 LL v[maxn][maxn]; 12 }; 13 14 //矩阵间... 阅读全文
posted @ 2018-04-16 20:38 ouyang_wsgwz 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 33 下一页