using System; using System.Collections.Generic; using System.Text; using SevenZip; using System.IO; using System.Windows.Forms; namespace TestZip { in ...
昨晚在安装第三方库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和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
#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
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
直接判断单价和单买就可以 #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 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
题目链接:小猫爬山 解法一: #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
题目如下: 思路: 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
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