首页 > TAG信息列表 > enhancements

Creating Heuristics Using Your Own Algorithm 创建新的Heuritic

Creating Heuristics Using Your Own Algorithm  Purpose You can program heuristic algorithms yourself, link them to the SAP APO system, and define heuristics. This allows you to specifically address your planning requirements. Your own heuristics are an en

kubernetes系列文章第一篇-k8s基本介绍

kubernetes是什么?Kubernetes是一个可移植、可扩展的、开源的容器管理平台,简称k8s,可用于管理多个主机上的容器化应用程序。提供应用程序的快速部署,维护和扩展的基本机制。Kubernetes提供了应用程序的快速部署、扩缩容,升级和回滚的能力,利用service可以实现服务注册、发现和四层负载均

kubernetes系列文章第一篇-k8s基本介绍

kubernetes是什么?Kubernetes是一个可移植、可扩展的、开源的容器管理平台,简称k8s,可用于管理多个主机上的容器化应用程序。提供应用程序的快速部署,维护和扩展的基本机制。Kubernetes提供了应用程序的快速部署、扩缩容,升级和回滚的能力,利用service可以实现服务注册、发现和四层负载均

Last minute enhancements

题目链接 贪心 出现重复的数字就在这个数字的基础上+1  

CF1466B Last minute enhancements

本题解与Luogu同步 Solution 考虑,若出现过就\(+1\),便是最优答案。 因为右边\(+1\)并不会影响左边 记得多组数据归零变量! Code #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; int a[100007]; bool vis[200007]; int t, n, ans

【CF1466B】Last minute enhancements

链接 链接 code 直接贪心,和上一题一样,都用到了map #include <iostream> #include <algorithm> #include <map> #include <cctype> inline int read(){ int x = 0; char ch = getchar(); while (!isdigit(ch)){ch = getchar();} while (isdigit(ch)){x =