1 #include <stdio.h> 2 #include <string.h> 3 #include <iostream> 4 #include <string> 5 #include <math.h> 6 #include <algorithm> 7 #include <vector> 8 ...
分类:
其他好文 时间:
2020-01-20 09:56:34
阅读次数:
84
有一个结论: 当 $(1,1)$ 不能抵达 $(2,n)$ 时,必定存在一个点对,这两个点的值均为真,且坐标中的 $x$ 互异,$y$ 的差 $\leq 1$ 这个结论的正确性感觉非常显然,就不多说了。 下图可以形象地解释点对的位置关系。 那对于每个点的值,只要开一个数组 记录一下即可。 有了上述结 ...
分类:
其他好文 时间:
2020-01-20 09:40:13
阅读次数:
103
原题题面:https://codeforces.com/contest/1293/problem/C 题目大意: 有一个2*n的图 NEKO#ΦωΦ要带领mimi们从(1,1)的点走到(2,n)的点 每次会操作一个点,从可以通过到不可以通过,不可以通过到可以通过 每操作一次要回答一次NEKO#ΦωΦ ...
分类:
其他好文 时间:
2020-01-20 09:33:36
阅读次数:
53
题目链接:http://codeforces.com/contest/1293/problem/C 题意:给定n,q,即给定一个2*n的格子,有q个查询。 每个查询给定一个ri和ci,ri为1或2,ci在1到n之间,即给定一个(ri,ci),该点自该查询起状态进行转变(可经过/不可经过)。 如某个查 ...
分类:
其他好文 时间:
2020-01-20 09:28:01
阅读次数:
58
Kubernetes概述 根据Kubernetes网站的说法,“Kubernetes是一个自动化,容器化应用程序部署扩展和管理的开放源代码系统。”Kubernetes由Google根据他们在生产中运行容器的经验使用称为Borg的内部集群管理系统(有时简称Omega)。 Kubernetes的体系结构 ...
分类:
Web程序 时间:
2020-01-10 15:51:10
阅读次数:
230
1.1 基本概念 Kubernetes最初源于谷歌内部的Borg,提供了面向应用的容器集群部署和管理系统。Kubernetes的目标旨在消除编排物理/虚拟计算,网络和存储基础设施的负担,并使应用程序运营商和开发人员完全将重点放在以容器为中心的原语上进行自助运营。Kubernetes 也提供稳定、兼容 ...
分类:
Web程序 时间:
2019-12-23 13:22:42
阅读次数:
81
There is a ball in a maze with empty spaces and walls. The ball can go through empty spaces by rolling up, down, left or right, but it won't stop roll ...
分类:
其他好文 时间:
2019-12-08 10:24:10
阅读次数:
84
There is a ball in a maze with empty spaces and walls. The ball can go through empty spaces by rolling up, down, left or right, but it won't stop roll ...
分类:
其他好文 时间:
2019-12-06 13:57:19
阅读次数:
102
什么是Kubernetes 官网 https://kubernetes.io/ 中文版:https://kubernetes.io/zh/ 个人理解 基于容器技术 分布式架构 弹性伸缩 隔离物理机 和谷歌的Borg有关系 用于部署、管理、运维我们的应用 Kubernetes核心概念 Kubernet ...
分类:
Web程序 时间:
2019-12-04 20:24:00
阅读次数:
111
原题链接在这里:https://leetcode.com/problems/the-maze-iii/ 题目: There is a ball in a maze with empty spaces and walls. The ball can go through empty spaces by ...
分类:
其他好文 时间:
2019-11-25 13:14:12
阅读次数:
50