凸包板子 #include<iostream> #include<cstdio> #include<cmath> #include<cstring> #include<algorithm> using namespace std; struct Point { int x,y; }; Point a ...
分类:
其他好文 时间:
2020-10-27 11:27:51
阅读次数:
20
Reference: [Dockerfile Security Best Practices] Container security is a broad problem space and there are many low hanging fruits one can harvest to m ...
分类:
其他好文 时间:
2020-10-24 11:48:16
阅读次数:
37
1008 数组元素循环右移问题 (20分) 一个数组AAA中存有NNN(>0>0>0)个整数,在不允许使用另外数组的前提下,将每个整数循环向右移MMM(≥0\ge 0≥0)个位置,即将AAA中的数据由(A0A1?AN?1A_0 A_1 \cdots A_{N-1}A?0??A?1???A?N?1?? ...
分类:
编程语言 时间:
2020-10-24 10:14:28
阅读次数:
25
1. Docker 是什么? 官网的介绍是“Docker is the world’s leading software container platform.” 官方给Docker的定位是一个应用容器平台; Docker 是一个容器平台的领导者 Docker 容器平台 Docker 应用容器平台。 ...
分类:
其他好文 时间:
2020-10-24 10:06:54
阅读次数:
25
description CF578F solution 考虑转化题目的要求 1.对于任意一条边,都存在一条从界垂直射入的光线,经过反射穿过这条边。 当图中有环时,环内的边一定不满足条件,而在不存在环时感性理解一下就能满足条件 2.从任意一条界垂直射入的光线经过反射,从相邻的一条界射出; 对于这个条件 ...
分类:
其他好文 时间:
2020-10-22 23:05:17
阅读次数:
25
三个数输出最大值inta,b,c,t;scanf_s("%d%d%d",&a,&b,&c);if(a<b){t=a;a=b;b=t;}if(b<c){t=b;b=c;c=t;}if(a<b){t=a;a=b;b=t;}printf("%d%d%d\n",a,b,c);用switch语句实现循环第一类型intmain(
分类:
其他好文 时间:
2020-10-22 22:44:53
阅读次数:
28
1.Socket和TCP/IP的关系 "All problems in computer science can be solved by another level of indirection." 为满足应用层需求,系统对TCP/IP层进行细节屏蔽和抽象,Socket层就相当于TCP/IP和应用 ...
分类:
系统相关 时间:
2020-10-21 21:04:10
阅读次数:
40
Editing the attributes of annotation编辑注记属性 Editing the attributes of annotation You can edit annotation attributes in the Attributes window, which pro... ...
分类:
其他好文 时间:
2020-10-21 20:40:20
阅读次数:
20
设置日期语言 alter session set NLS_DATE_LANGUAGE = AMERICAN; 设置日期显示格式 alter session set NLS_DATE_FORMAT = 'yyyy-mm-dd hh24:mi:ss' ...
分类:
数据库 时间:
2020-10-20 16:23:29
阅读次数:
36
题目 题目链接:http://noip.ybtoj.com.cn/contest/102/problem/1 思路 可以视作将 \(m\) 个位置分成 \(n\) 份,第 \(i\) 份上需要填上相同且在 \([l_i,r_i]\) 中的数的积的和。 所以可以设 \(f[i][j][k]\) 表示前 ...
分类:
其他好文 时间:
2020-10-19 23:02:49
阅读次数:
21