贪心
文章平均质量分 69
大白QQly成长日记
小白自远方来
展开
-
+-字符串(简单贪心)
+-字符串时间限制:1000 ms | 内存限制:65535 KB难度:1 描述 Shiva得到了两个只有加号和减号的字符串,字串长度相同。Shiva一次可以把一个加号和它相邻的减号交换。他想知道最少需要多少次操作才能把第一个字符串变换成第二个字符串。你现在要去帮助他完成那个这个问题。 输入 多组测试数据每组数据有两行,每行包含一个由...原创 2018-04-09 18:44:00 · 537 阅读 · 0 评论 -
填数字/涂颜料(贪心)
题目描述托米发现了一种新的游戏--填数字!每填写一次数字(1≤ i≤9)需要花费ai枚金币,托米总共有n枚金币.托米想知道他能得到的最大数字是多少.如果填不了请输出-1。不需要用完所有金币输入描述:第一行一个数字n,表示金币总数.第二行9个正整数,第i个数字表示填写一次数字i所需要的金币数.输出描述:输出满足条件的最大数字.示例1输入55 4...原创 2018-06-16 09:15:28 · 298 阅读 · 0 评论 -
山东省第九届ACM A-Anagram(贪心)
Orz has two strings of the same length: A and B. Now she wants to transform A into an anagram of B (which means, a rearrangement of B) by changing some of its letters. The only operation the girl can ...原创 2018-08-06 10:33:22 · 326 阅读 · 0 评论 -
CF# 499 div2 B. Planning The Expedition
Natasha is planning an expedition to Mars for nn people. One of the important tasks is to provide food for each participant.The warehouse has mm daily food packages. Each package has some food type ...原创 2018-07-27 10:48:36 · 468 阅读 · 0 评论 -
HDU 6299-Balanced Sequence(贪心)
Chiaki has n strings s1,s2,…,sn consisting of '(' and ')'. A string of this type is said to be balanced:+ if it is the empty string+ if A and B are balanced, AB is balanced,+ if A is balanced, (A) ...原创 2018-09-01 10:11:43 · 191 阅读 · 0 评论 -
POJ 1328 Radar Installation(贪心)
DescriptionAssume the coasting is an infinite straight line. Land is in one side of coasting, sea in the other. Each small island is a point locating in the sea side. And any radar installation, loc...原创 2018-12-06 21:44:59 · 287 阅读 · 0 评论 -
过河问题(经典贪心)
题目描述在漆黑的夜里,N位旅行者来到了一座狭窄而且没有护栏的桥边。如果不借助手电筒的话,大家是无论如何也不敢过桥去的。不幸的是,N个人一共只带了一只手电筒,而桥窄得只够让两个人同时过。如果各自单独过桥的话,N人所需要的时间已知;而如果两人同时过桥,所需要的时间就是走得比较慢的那个人单独行动时所需的时间。问题是,如何设计一个方案,让这N人尽快过桥。 输入第一行是一个整数N(1<=N...原创 2019-02-03 15:00:35 · 1492 阅读 · 0 评论