码迷,mamicode.com
首页 >  
搜索关键字:namespace    ( 41927个结果
题解 P4427 [BJOI2018]求和
Solution lca+前缀和 快读不要忘写c= 复杂度 \(O(nk)\) Code #include<iostream> #include<cstdio> #include<cstdlib> #define ll long long using namespace std; const int ...
分类:其他好文   时间:2021-06-21 19:59:39    阅读次数:0
C# 扩展方法
扩展方法的 3 个要求: 声明扩展方法的类必须声明为 static; 扩展方法本身必须声明为static; 扩展方法第一个参数类型前一定要包含关键字 this。 using System; namespace ExtensionMethods { sealed public class MyMeth ...
分类:Windows程序   时间:2021-06-21 19:54:40    阅读次数:0
P4447 [AHOI2018初中组]分组
排序后扫一遍,维护当前分组方案,尽量加入人数少的组。如果某些组再也不可能加入了就统计最小值,如果每组都加入过了相同的实力值就新开一组。 因为组的信息具有单调性,所以可以用双端队列 \(O(n)\) 维护。 code: #include<bits/stdc++.h> using namespace s ...
分类:其他好文   时间:2021-06-20 18:04:28    阅读次数:0
Luogu P2825 [HEOI2016/TJOI2016]游戏
题链 分析 如果没有硬石头,显然裸的二分图匹配 加上硬石子,相当于分段后跑二分图匹配即可 #include<bits/stdc++.h> #define pb push_back using namespace std; const int N=105,M=10005; int n,m,id1[N] ...
分类:其他好文   时间:2021-06-20 17:41:41    阅读次数:0
Codeforces Round #726 (Div. 2)
#include <bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) #define all(x) x.begin(),x.end() #define pb(x) push_back(x) #def ...
分类:其他好文   时间:2021-06-19 19:16:51    阅读次数:0
空间四点体积
https://ac.nowcoder.com/acm/contest/11212/E #include<bits/stdc++.h> using namespace std; // define a point class to store a point class Point { public ...
分类:其他好文   时间:2021-06-19 18:50:57    阅读次数:0
UVA757 【Gone Fishing】
好像还没有人写题解鸭,那我就来写(shui)一篇吧。 求最多能钓到多少鱼,容易想到贪心。 先把时间的单位换成时间片。 因为不知道终点在哪所以我们可以枚举终点。 枚举完之后花在路上的时间就确定了,直接减去即可。 然后我们在所有湖能钓到的鱼中贪心选最大值,选完之后再把这个湖能钓到的鱼的数量减去$d[i] ...
分类:其他好文   时间:2021-06-19 18:45:27    阅读次数:0
Http请求
using System; using System.Net.Http; using System.Net.Http.Json; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static async Ta ...
分类:Web程序   时间:2021-06-18 19:08:41    阅读次数:0
容器基础2:隔离与限制
1.隔离 使用namespace技术,实现隔离 namespace 实际上修改了应用进程看待整个计算机的视图,即它的视线被操作系统做了限制,只能看到某些指定内容 。对宿主机来说,这些被“隔离”的进程和其他进程没有啥太大差别 2.说明 用户运行在容器里的业务进程,和宿主机上其他进程一样,都是由宿主机操 ...
分类:其他好文   时间:2021-06-18 18:55:44    阅读次数:0
TP框架使用命令行
TP框架使用命令行 <?php namespace app\command; use think\Db; use app\shopee\Item; use think\console\Input; use think\console\Output; use think\console\Command ...
分类:其他好文   时间:2021-06-17 17:23:24    阅读次数:0
41927条   上一页 1 2 3 4 5 6 ... 4193 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!