码迷,mamicode.com
首页 >  
搜索关键字:names    ( 11603个结果
POJ1149 - PIGS - 网络流最大流 - 构图
##AC代码 #include<stdio.h> #include<string.h> #include<iostream> #include<queue> using namespace std; #define inf 0x3f3f3f3f const int N=1020; int e[N][ ...
分类:其他好文   时间:2021-05-24 03:46:14    阅读次数:0
AcWing 393. 雇佣收银员
原题链接 考察:差分约束+二分+前缀和 思路: 某个区间有多少个,考虑前缀和. 那么: s[i] - s[i-1] >= 0 , s[i] - s[i-1] 表示第i小时雇佣的人,s[i] - s[i-1] <= sum[i] sum[i]表示可以在i时刻开始工作的人数. 注意r[i]表示第i小时需 ...
分类:Windows程序   时间:2021-05-24 02:41:34    阅读次数:0
Tarjan
有向图强连通分量SCC P3387【模板】缩点 注释放代码里啦 时间复杂度O(n+m) #include<iostream> #include<cstdio> #include<cstdlib> #define maxn 100010 #define maxm 1000010 using names ...
分类:其他好文   时间:2021-05-24 02:15:52    阅读次数:0
DBHelperMySQL
using System;using System.Collections;using System.Collections.Specialized;using System.Data;using System.Configuration;using System.Data.Common;using ...
分类:数据库   时间:2021-05-24 02:07:55    阅读次数:0
简化版由前序遍历和中序遍历返回后序遍历
#include<iostream> #include<cstring> #include<string> #include<stdio.h> using namespace std; void print(int n,char *x,char *y) { if(n<=0) return; int ...
分类:其他好文   时间:2021-05-23 23:32:39    阅读次数:0
高精度运算
###高精度算法 高精度加法: 题目描述 高精度加法,相当于a+b problem,不用考虑负数. 输入格式 分两行输入。a*,*b ≤10500 输出格式 输出只有一行,代表a+b的值 输入输出样例 输入 #1 1 1 输出 #1 2 输入 #2 1001 9099 输出 #2 10100 当拿到 ...
分类:其他好文   时间:2021-05-23 23:08:55    阅读次数:0
C - Arrangement for Contests
题目链接 维护一个区间最小值同时维护一个区间最小值的减法 #include <bits/stdc++.h> using namespace std; const int N = 100010; int a[N]; int n,k; struct node{ int l,r; int v,add; } ...
分类:其他好文   时间:2021-05-04 16:06:56    阅读次数:0
vscode clang-format
workspace/.clang-format # 使用前请replace "#.*\n" "" # 原因貌似是中文字符会导致无法正常排版 # 语言: None, Cpp, Java, JavaScript, ObjC, Proto, TableGen, TextProto Language: Cp ...
分类:其他好文   时间:2021-05-03 13:00:18    阅读次数:0
字符串数组的元素修改
字符串数组 如果数组元素不是基本类型,而是一个引用类型,那么,修改数组元素会有哪些不同? 字符串是引用类型,因此我们先定义一个字符串数组: String[] names = { "ABC", "XYZ", "zoo" }; 对于String[]类型的数组变量names,它实际上包含3个元素,但每个元 ...
分类:编程语言   时间:2021-05-03 12:07:19    阅读次数:0
一文读懂C++ String类在算法竞赛中的常见用法
一文读懂C++ String类在算法竞赛中的常见用法 string 相较于C语言的字符数组可方便太多了,在算法竞赛中能大大节省我们的时间。以下是我在刷题中会使用到的常见String用法。注释都写好了。 #include <iostream> #include <string> using names ...
分类:编程语言   时间:2021-04-30 12:14:45    阅读次数:0
11603条   上一页 1 ... 4 5 6 7 8 ... 1161 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!