
ACM_贪心
feng_zhiyu
这个作者很懒,什么都没留下…
展开
-
(UVA - 12405) Scarecrow(贪心)
链接: https://vjudge.net/problem/UVA-12405题意:给定正整数n(n<=100),接着输入长度为n的字符串,只由’.’和’#’组成,一个’#’可以覆盖相邻三个’.’,求最少用多少个’#’可以覆盖所有的’.’?分析:贪心,遇到一个’.’,ans++,跳过后面的两个字符#include<cstdio>#include<cstring>#include<algorit原创 2017-08-12 12:33:45 · 460 阅读 · 0 评论 -
(UVA - 11039)Building designing (贪心)
链接: https://vjudge.net/problem/UVA-11039 题意:有n个绝对值各不相同的非0整数,选出尽量多的书,排成一个序列,使得正负号交替,且绝对值递增。输入n(1<=n<5e5)和n个整数,输出最长的序列长度。分析:贪心#include <cstdio>#include <cstring>#include <iostream>#include <cmath>#i原创 2017-08-22 16:02:12 · 484 阅读 · 0 评论 -
【AtCoder Regular Contest 092】C.2D Plane 2N Points(匈牙利算法/tuple+set 贪心)
原题链接 题意:给两个长度为n的序列的坐标,分别为(Ai,Bi),(Ci,Di),求最多有多少对坐标满足Ai&lt;Ci并且Bi&lt;Di。分析:将满足题中条件的坐标对的下标(i,j)存入vector,然后就是匈牙利模板 复杂度:O(n*m) n RT,m为构成的坐标对的数量 模板解释:http://blog.youkuaiyun.com/dark_scope/article/details/...原创 2018-03-17 22:20:49 · 427 阅读 · 0 评论 -
【Codeforces Round #469 (Div. 2)】C. Zebras(贪心,思维)
http://codeforces.com/contest/950/problem/C 题意: 给长为n(&lt;=2e5)由0,1组成的字符串,求分割成以0开头和结尾并且0,1交替出现的若干个字符串,要求它们的位置是递增的。分析: 贪心, 赛时各种特判,因为写的代码 太烂,然后就卡在第八组数据。 改不动了,改完后最坏情况下复杂度成了O(n^2)而大多数大佬 代码比较优美 使用v...原创 2018-03-09 21:45:12 · 335 阅读 · 0 评论 -
【PAT甲级】1067 Sort with Swap(0,*) (25)
题目链接Given any permutation of the numbers {0, 1, 2,..., N-1}, it is easy to sort them in increasing order. But what if Swap(0, *) is the ONLY operation that is allowed to use? For example, to sort {4...原创 2018-08-01 22:10:59 · 305 阅读 · 0 评论 -
【PAT甲级】1033 To Fill or Not to Fill (25)
题目链接With highways available, driving a car from Hangzhou to any other city is easy. But since the tank capacity of a car is limited, we have to find gas stations on the way from time to time. Differ...原创 2018-08-24 14:34:28 · 287 阅读 · 0 评论 -
【PAT甲级】1070 Mooncake(25 分)(贪心)
题目链接Mooncake is a Chinese bakery product traditionally eaten during the Mid-Autumn Festival. Many types of fillings and crusts can be found in traditional mooncakes according to the region's culture....原创 2018-08-31 17:48:24 · 400 阅读 · 0 评论