题意: 给一个图一些边,保证图连通 问对于每条边,如果去除该边后使得图中一些点不连通。设这些点(u,v),要求使u尽量小,v尽量大,输出这样的(u,v)。否则输出0 0。 ...
分类:
移动开发 时间:
2017-10-19 21:06:11
阅读次数:
225
CRB and Farm HDU - 5408 题意:给一个n个点的大凸包,再给k个内部点,问能否选择不超过2k个大凸包上的点使得所选点围成的凸包完全包含内部的k个点. 首先明确一定是存在的 可以先对内部的k个点求一个凸包,然后选一个凸包内的点A,求A与凸包上的各点形成的射线与大凸包的交点.则交点所 ...
分类:
其他好文 时间:
2017-10-16 18:05:03
阅读次数:
166
class Solution { public int candy(int[] ratings) { int[] candies=new int[ratings.length]; for(int i=0;i=0;i--) if(ratings[i]>ratings[i+1]) candies[i]=... ...
分类:
其他好文 时间:
2017-10-08 13:03:16
阅读次数:
182
There are N children standing in a line. Each child is assigned a rating value. You are giving candies to these children subjected to the following re ...
分类:
其他好文 时间:
2017-10-05 19:36:11
阅读次数:
172
https://vjudge.net/problem/POJ-2886 题意:N个人围成一圈第一个人跳出圈后会告诉你下一个谁跳出来跳出来的人(如果他手上拿的数为正数,从他左边数A个,反之,从他右边数A个) 跳出来的人所得到的糖果数量和他跳出的顺序有关 所得的糖果数为 (假设他是第k个跳出的) 则他得 ...
分类:
其他好文 时间:
2017-09-16 17:11:10
阅读次数:
98
Description N children are sitting in a circle to play a game. The children are numbered from 1 to N in clockwise order. Each of them has a card with ...
分类:
其他好文 时间:
2017-09-03 23:36:53
阅读次数:
172
http://www.cnblogs.com/Candies/p/4142576.html 本文介绍以下内容: LFET JOIN、RIGHT JOIN、INNER JOIN、UNION、UNION ALL、FULL JOIN等! 测试数据(以下数据未经考证,非真实有效数据,仅作为本次学习的测试数据 ...
分类:
数据库 时间:
2017-08-31 00:16:38
阅读次数:
319
题目链接:https://vjudge.net/problem/UVA-10118 Little Bob is playing a game. He wants to win some candies in it - as many as possible. There are 4 piles, e ...
分类:
其他好文 时间:
2017-08-30 15:39:11
阅读次数:
118
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th ...
分类:
其他好文 时间:
2017-08-30 09:58:38
阅读次数:
167
Given an integer array with even length, where different numbers in this array represent different kinds of candies. Each number means one candy of th ...
分类:
其他好文 时间:
2017-08-19 23:31:49
阅读次数:
171