码迷,mamicode.com
首页 > 2021年02月16日 > 全部分享
POJ2728 Desert King(最优比率生成树)
题意: 有$n$个村庄,村庄在不同坐标和海拔,现在要对所有村庄供水,只要两个村庄之间有一条路即可,建造水管距离为坐标之间的欧几里德距离,费用为海拔之差,现在要求方案使得费用与距离的比值最小。\(n<=1000\) ##思路: 经典的01分数规划求解最优比率生成树,在此题中稠密图采用暴力Prim求解。 ...
分类:其他好文   时间:2021-02-16 12:07:40    阅读次数:0
Spring Cloud Gateway:新一代API网关服务
Spring Cloud Gateway:新一代API网关服务 摘要 Spring Cloud Gateway 为 SpringBoot 应用提供了API网关支持,具有强大的智能路由与过滤器功能 。 Gateway 简介 Gateway是在Spring生态系统之上构建的API网关服务,基于Sprin ...
分类:编程语言   时间:2021-02-16 12:07:18    阅读次数:0
2020 BIT冬训-贪心 K - USB vs. PS/2 CodeForces - 762B
Problem Description Due to the increase in the number of students of Berland State University it was decided to equip a new computer room. You were gi ...
分类:其他好文   时间:2021-02-16 12:07:01    阅读次数:0
eclipse常用快捷键
/** 1.补全代码的声明: alt + /* 2.快速修复: ctrl + 1* 3.批量导包: ctrl + shift + o* 4.使用单行注释: ctrl + /* 5.使用多行注释: ctrl + shift + /* 6.取消多行注释: ctrl + shift + \* 7.复制指定 ...
分类:系统相关   时间:2021-02-16 12:06:48    阅读次数:0
thread模块
#python学习-thread模块 由于单线程效率低,python引入了多线程编程 ##前置知识 进程: 是程序的一次执行,每个进程都有自己的地址空间、内存、数据栈及其他记录运行轨迹的辅助数据。 线程: 所有的线程都运行在同一个进程当中,共享相同的运行环境。线程有开始、顺序执行和结束三个部分。 计 ...
分类:其他好文   时间:2021-02-16 12:06:31    阅读次数:0
P1450 [HAOI2008]硬币购物
原题链接 考察:容斥原理+完全背包+计数dp 本蒟蒻是打死都想不到怎么用容斥原理... 错误思路: 乍看一下是多重背包,时间复杂度80*105*103(采用二进制优化)显然T了 正确思路: 采取完全背包预处理的方法,时间复杂度105 ,求出不限数量的取法.答案就是所有取法-不合法的取法.这里就可以想 ...
分类:其他好文   时间:2021-02-16 12:06:08    阅读次数:0
Spring Cloud Alibaba:Nacos 作为注册中心和配置中心使用
Spring Cloud Alibaba:Nacos 作为注册中心和配置中心使用 摘要 Spring Cloud Alibaba 致力于提供微服务开发的一站式解决方案,Nacos 作为其核心组件之一,可以作为注册中心和配置中心使用 。 Nacos简介 Nacos 致力于帮助您发现、配置和管理微服务。 ...
分类:编程语言   时间:2021-02-16 12:05:45    阅读次数:0
Doc文件
在类上右键—>Open in—>Explorer 在地址栏输入cmd,即在此类所在文件夹打开控制台 DOS命令:javadoc -encoding UTF-8 -charset UTF-8 Doc.java( -encoding UTF-8 -charset UTF-8是为了解决可能出现的中文乱码问 ...
分类:其他好文   时间:2021-02-16 12:05:25    阅读次数:0
MySQL——分组
GROUP BY语句 功能:根据一个或多个列对结果集进行分组 WITH ROLLUP 功能:实现在分组统计数据基础上在进行相同的统计 ##select coalesce(a,b,c); 如果a==null,则选择b; 如果b==null,则选择c; 如果a!=null,则选择a; ...
分类:数据库   时间:2021-02-16 12:05:10    阅读次数:0
LeetCode - Merge Intervals
Given an array of intervals where intervals[i] = [starti, endi], merge all overlapping intervals, and return an array of the non-overlapping intervals ...
分类:其他好文   时间:2021-02-16 12:04:54    阅读次数:0
Scala编译环境搭建(mac IDEA)
前提:Java环境已就绪 一、安装IDEA 二、安装插件 1、安装Scala插件Intellij IDEA->Preferences->Configure->Plugins 在输入框中输入Scala,找到Scala后,点击右边的install按钮,完成安装后重启Intellij IDEA生效 2、创 ...
分类:系统相关   时间:2021-02-16 12:04:34    阅读次数:0
1342. Number of Steps to Reduce a Number to Zero (E)
Number of Steps to Reduce a Number to Zero (E) 题目 Given a non-negative integer num, return the number of steps to reduce it to zero. If the current nu ...
分类:其他好文   时间:2021-02-16 12:04:19    阅读次数:0
「汇编语言 第 3 版 王爽」- 参考答案:检测点 11.2 @20210212
参考答案 AL CF OF SF ZF PF sub al, al 0h 00000000b 0/NC 0/NV 0/PL 1/ZR 1/PE mov al, 10h 10h 00100000b 0/NC 0/NV 0/PL 1/ZR 1/PE add al, 90h a0h 10100000b 0 ...
分类:编程语言   时间:2021-02-16 12:04:04    阅读次数:0
Vue2.x Methods of use v-for
Introduction: It's a paper to reorganize the knowledge of List Rendering in Vue official guide. So a lot of content is from the Vue Official guide. Th ...
分类:其他好文   时间:2021-02-16 12:03:49    阅读次数:0
第35天学习打卡(输入框 TextField监听 简易计算器,组合+内部类回顾复习 画笔 鼠标监听 窗口监听 键盘监听)
1.输入框 TextField监听 package com.kuang.lesson02; ? import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; ? public c ...
分类:其他好文   时间:2021-02-16 12:03:30    阅读次数:0
[Bash] Create a Bash Script that Accepts Named Options with getopts
Getopts Let’s say you want to allow a user to pass a -v flag to turn on verbose logging in a script. Manually parsing out options passed to a script i ...
分类:其他好文   时间:2021-02-16 12:03:18    阅读次数:0
Golang种结构体的5种初始化方式
package main import ( "fmt" ) type Cat struct{ Name string Age int } func main(){ // 第一种方式,先声明再初始化 var cat1 Cat cat1.Name = "cat1" cat1.Age = 1 fmt.Pr ...
分类:其他好文   时间:2021-02-16 12:03:03    阅读次数:0
213条   上一页 1 ... 6 7 8 9 10 11 12 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!