link #include <cstdio> #include <cmath> #include <vector> #include <algorithm> #include <climits> #include <unordered_map> #include <cstdio> #include ...
分类:
其他好文 时间:
2020-03-07 09:43:40
阅读次数:
61
题目链接: https://www.acwing.com/problem/content/1272/ 题解: 线段树模板题,单点求和、区间查询都可 AC代码: #include <cstdio> #include <iostream> #include <algorithm> #include <c ...
分类:
其他好文 时间:
2020-02-16 22:21:04
阅读次数:
69
头文件:#include <climits> ...
分类:
编程语言 时间:
2020-02-01 12:46:03
阅读次数:
66
直接干 1 #include<iostream> 2 #include<algorithm> 3 #include<climits> 4 using namespace std; 5 struct edge 6 { 7 int from,to,weight; 8 }a[100010];//存边 9 ...
分类:
其他好文 时间:
2020-01-26 12:58:41
阅读次数:
56
Kruskal算法:使用并查集求最小生成树,引入parent数组 1 #include <iostream> 2 #include <vector> 3 #include <queue> 4 #include <string> 5 #include <climits> 6 7 using names ...
分类:
编程语言 时间:
2019-12-17 15:03:54
阅读次数:
80
出处LINK 改写:去除sum变量;新增结点6,实现遍历全图的算法 输出:索引值 1 #include <iostream> 2 #include <climits> 3 using namespace std; 4 #define MAX 10 5 6 int mat[MAX][MAX]; 7 i ...
分类:
其他好文 时间:
2019-12-01 21:04:58
阅读次数:
153
上图: 参考上一篇 上码: #include <iostream> #include <climits> #include <queue> using namespace std; #define MAX 10 int mat[MAX][MAX]; int visited[MAX]; int n=6 ...
分类:
其他好文 时间:
2019-12-01 20:28:31
阅读次数:
82
模板: (用时间戳记录可以避免每一次memset vis) #include<bits/stdc++.h> using namespace std; #define N 2005 #define M 1000005 int match[N],vis[N],T=0;//只存一边的匹配点 int to[ ...
分类:
其他好文 时间:
2019-10-12 11:13:04
阅读次数:
133
题意分析 1.题目大致说的是让你输出符合这种条件(在所给的字符串中至少有一个不是它的子串)的字符串对应的label,若没有输出 1; 2.判断子串可以用string.h下的strstr(s1, s2)函数,若s2 是s1的子串则返回在s1中s2首字母对应的地址,若不是则返回NULL,想进一步了解st ...
分类:
其他好文 时间:
2019-09-06 01:39:41
阅读次数:
119
#include<iostream> #include<climits> #include<string> #include<cstring> #include<array> using namespace std; struct CandyBar { string brand; double we... ...
分类:
其他好文 时间:
2019-09-05 12:07:35
阅读次数:
96