码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
C# 7-zip 压缩和解压缩
using System; using System.Collections.Generic; using System.Text; using SevenZip; using System.IO; using System.Windows.Forms; namespace TestZip { in ...
分类:Windows程序   时间:2020-06-26 14:24:05    阅读次数:200
安装第三方库openpyxl时,报错:You are using pip version 19.0.3, however version 20.2b1 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command.
昨晚在安装第三方库openpyxl时,执行pip install openpyxl后,报错:You are using pip version 19.0.3, however version 20.2b1 is available. You should consider upgrading via ...
分类:编程语言   时间:2020-06-26 14:22:22    阅读次数:92
用getline分割字符串
使用getline和stringstream分割字符串: 1 #include <iostream> 2 #include <string> 3 #include <sstream> 4 #include <vector> 5 6 using namespace std; 7 8 int main( ...
分类:其他好文   时间:2020-06-26 12:53:55    阅读次数:77
Luogu3703 SDOI2017树点涂色
#include<bits/stdc++.h> using namespace std; #define int long long namespace yspm{ inline int read() { int res=0,f=1; char k; while(!isdigit(k=getchar ...
分类:其他好文   时间:2020-06-26 11:06:32    阅读次数:48
Educational Codeforces Round 90 (Rated for Div. 2)题解
A. Donut Shops 题目传送门 水题,就用a * b和c比一下大小就行了,要求买第一种饼干便宜的情况就假设只买一块,比较a和c的大小,求买第二种便宜就比较 a * b和c比大小就行了 #include<bits/stdc++.h> using namespace std; #pragma ...
分类:其他好文   时间:2020-06-26 11:02:28    阅读次数:134
Educational Codeforces Round 90 (Rated for Div. 2) A~C
直接判断单价和单买就可以 #include<bits/stdc++.h> #include<string.h> using namespace std; #define rep(i,j,k) for(LL i=(j); i<(k); ++i) #define pb push_back #define ...
分类:其他好文   时间:2020-06-26 10:58:28    阅读次数:67
fastIO
不考虑内存浪费的fastIO 1 #include<bits/stdc++.h> 2 using namespace std; 3 namespace IO 4 { 5 const int len=1<<25; 6 bool flag; 7 char ch,ibuf[len],wbuf[len]; ...
分类:其他好文   时间:2020-06-26 10:53:18    阅读次数:49
算法进阶指南(DFS和BFS)--- 小猫爬山
题目链接:小猫爬山 解法一: #include<iostream> #include<algorithm> using namespace std; const int N = 20; int n,m; int cat[N],sum[N]; int ans=N; void dfs(int now,i ...
分类:编程语言   时间:2020-06-26 10:50:34    阅读次数:99
P2356 弹珠游戏
题目如下: 思路: 1.数据很小 可以开数组解决 代码如下: #include<cstdio> #include<iostream> using namespace std; int a[1010][1010]; int ans=0,n; bool flag=false; int f(int i,i ...
分类:其他好文   时间:2020-06-26 10:41:13    阅读次数:89
27. U3D 高通AR
1,高通AR流程 HiAR_各种功能案例: HiAR SDK:Unity Package包形式:http://pan.baidu.com/s/1jItIyjW AR 脱卡(小明离开背景图片时也会显示出来) 脚本挂ImageTarget上 using System.Collections; using ...
分类:其他好文   时间:2020-06-26 10:34:13    阅读次数:73
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!