#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
好像还没有人写题解鸭,那我就来写(shui)一篇吧。 求最多能钓到多少鱼,容易想到贪心。 先把时间的单位换成时间片。 因为不知道终点在哪所以我们可以枚举终点。 枚举完之后花在路上的时间就确定了,直接减去即可。 然后我们在所有湖能钓到的鱼中贪心选最大值,选完之后再把这个湖能钓到的鱼的数量减去$d[i] ...
分类:
其他好文 时间:
2021-06-19 18:45:27
阅读次数:
0
拓展方式注入 使用p命名空间和c命名空间进行注入 实体类 import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; @Data @NoArgsConstructor @AllArgsC ...
分类:
其他好文 时间:
2021-06-18 20:05:03
阅读次数:
0
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
1.隔离 使用namespace技术,实现隔离 namespace 实际上修改了应用进程看待整个计算机的视图,即它的视线被操作系统做了限制,只能看到某些指定内容 。对宿主机来说,这些被“隔离”的进程和其他进程没有啥太大差别 2.说明 用户运行在容器里的业务进程,和宿主机上其他进程一样,都是由宿主机操 ...
分类:
其他好文 时间:
2021-06-18 18:55:44
阅读次数:
0
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
using System; using System.Collections.Generic; using System.Threading; namespace 生产者消费者 { class Program { static int r; static Queue<int> q = new Que ...
分类:
其他好文 时间:
2021-06-16 18:05:33
阅读次数:
0
#include <iostream> #include <cstdlib> using namespace std; int func1(),func2(),func3(); int main(int argc,char * argv[]) { _onexit(func2); //函数注册时入栈, ...
分类:
编程语言 时间:
2021-06-15 18:03:29
阅读次数:
0
link #思路: 经典套路,通过dfs序将树上修改转化为线性修改,这样问题就转化为了单点修改,区间查询,用树状数组维护。 类似题 #代码: #pragma GCC optimize(2) #include<bits/stdc++.h> using namespace std; typedef lo ...
分类:
移动开发 时间:
2021-06-15 17:41:05
阅读次数:
0