码迷,mamicode.com
首页 >  
搜索关键字:hole    ( 124个结果
1069 The Black Hole of Numbers (20 分)
注意不满$4$位的话要补成$4$位。 string s; set<int> S; int main() { cin>>s; while(s.size()<4) s='0'+s; while(true) { sort(s.begin(),s.end(),greater<char>()); string ...
分类:其他好文   时间:2021-02-15 12:21:49    阅读次数:0
Hole-in-the-wall café goes viral
###Hole-in-the-wall café goes viral A Shanghai coffee shop called Hinichijou has gone viral among netizens because of its quirky concept which involve ...
分类:其他好文   时间:2020-12-09 12:19:14    阅读次数:4
P1550 [USACO08OCT]Watering Hole G
Miku 我们只需要一个额外的点代表水库 #include<iostream> #include<cstdio> #include<algorithm> using namespace std; int head[400]; int n; int w[400]; int x,y,z; struct ...
分类:其他好文   时间:2020-10-06 20:27:46    阅读次数:26
适配器模式,so easy
适配器模式 概述 使用适配器类让一个对象获得或拥有另一个对象的行为,单向兼容或者双向兼容(相互兼容)。 适配器模式很好理解,就是让本不兼容的对象,用适配器让他们相互兼容。 话不多说,看代码 我举一个数据线接口的例子: Type-C孔 public class TypeC_Hole { private ...
分类:其他好文   时间:2020-07-26 15:47:04    阅读次数:81
1019 数字黑洞 (20分)/1069 The Black Hole of Numbers (20分)
#include<iostream> #include<algorithm> #include<cstdio> using namespace std; bool cmp(int a,int b){ return a>b; } void to_array(int n,int num []) { fo ...
分类:其他好文   时间:2020-07-18 11:39:12    阅读次数:78
POJ2182 Lost Cows (树状数组+二分)
N (2 <= N <= 8,000) cows have unique brands in the range 1..N. In a spectacular display of poor judgment, they visited the neighborhood 'watering hole ...
分类:编程语言   时间:2020-07-06 17:59:57    阅读次数:60
A1069 The Black Hole of Numbers (20分)
一、技术总结 这一题主要学习到两个知识点,一个是stoi函数的使用,之前已经讲过了,可以将一个字符串转化为10进制的数字; 还有就是字符串string中insert函数的使用,可以str.insert(0, num, '0');意思是在下标为0处插入num个字符‘0’; 还有就是使用dowhile; ...
分类:其他好文   时间:2020-06-23 21:22:54    阅读次数:42
并查集刷题整理
并查集刷题整理 并查集是一种数据结构,然而用于维护其的数组及函数又极少,用途极为广泛,被广泛地应用于极多的综合题目, 比较经典的应用就是最小生成树$kruskal$算法 T1:Watering Hole G 题意 $n$个牧场,需要挖井,在第$i$号农场挖需要$W_i$元,在$i$与$j$号之间通水 ...
分类:其他好文   时间:2020-04-03 21:41:18    阅读次数:73
【题解】The Last Hole! [CF274C]
【题解】The Last Hole! [CF274C] 传送门: "$\text{The Last Hole!}$" "$\text{[CF274C]}$" 【题目描述】 给出平面上 $n$ 个圆的圆心坐标,最开始它们的半径都是 $0$,然后所有圆同时开始扩大,在时刻 $t$ 时所有圆的半径均为 $ ...
分类:其他好文   时间:2020-03-10 16:12:30    阅读次数:67
POJ 1584 A Round Peg in a Ground Hole(凸多边形判断 + 点是否在多边形内 + 点到线段的最短距离)
题目:传送门 题意:给你一个圆和一个多边形, 判断多边形是不是凸多边形,如果是,接着判断圆是否在凸多边形内部。 #include <iostream> #include <stdio.h> #include <string.h> #include <algorithm> #include <queu ...
分类:其他好文   时间:2020-03-03 12:50:49    阅读次数:80
124条   1 2 3 4 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!