贪心、dfs--Codechef TKCONVEX

2024-01-03 14:33
文章标签 贪心 dfs codechef tkconvex

本文主要是介绍贪心、dfs--Codechef TKCONVEX,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目大意:
n 根木棍长度分别为ai,现在想从中选出2k 根组成两个面积大于0 的
凸k 边形,请找出一组解或判断无解
2k<=n<=1000 , 3<=k<=10 , 1<=ai<=109

solution:
k 条边成为一个凸多边形的充要条件是最长边小于其他边之和
将木棍按长度排序后,按上述条件可知可行解要么是两段不相交的
连续的子序列,要么是一个连续的长为2k 的子序列
使用前缀和可以O(n) 判断出第一种可能
第二种可能可以考虑暴力枚举求解,即枚举子序列的左端点,右端点随之确定,剩下的问题是分配木棍,由于k 最多只有10,所以暴搜即可

嗯其实很简单但我不会告诉你我暴搜都能写挂
好吧其实是没怎么看题,题上让输出的是数字在原序列中的标号
结果我直接一排序就忘记记录原标号了你懂得···
wa了十几次不想说话mdzz

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<vector>
#define maxn 1010
#define LL long long
using namespace std;
int n,k,cnt,last,l[5],r[5],mxp;
LL sum[maxn];
vector<int> ans[5];
bool flg;struct qwq{int id; LL w;
}a[maxn];
bool cmp(qwq x,qwq y) {return x.w<y.w;}
inline LL rd(){LL x=0,f=1;char c=' ';while(c<'0' || c>'9') {if(c=='-')f=-1;c=getchar();}while(c<='9' && c>='0') x=x*10+c-'0',c=getchar();return x*f;
}void dfs(int p,LL sum1,LL sum2){if(flg || p>mxp+1) return;if(ans[1].size()==k && ans[2].size()==k) {if(sum1-a[ans[1][k-1]].w<=a[ans[1][k-1]].w || sum2-a[ans[2][k-1]].w<=a[ans[2][k-1]].w) return;printf("Yes\n"); flg=true;for(int i=0;i<ans[1].size();i++) printf("%d ",a[ans[1][i]].id);for(int i=0;i<ans[2].size();i++) printf("%d ",a[ans[2][i]].id);return;}if(ans[2].size()<k){ans[2].push_back(p);dfs(p+1,sum1,sum2+a[p].w);ans[2].pop_back();}if(ans[1].size()<k){ans[1].push_back(p);dfs(p+1,sum1+a[p].w,sum2);ans[1].pop_back();}return;
}int main(){n=rd(); k=rd(); int last=0,cnt=0;for(int i=1;i<=n;i++) a[i].w=rd(),a[i].id=i;sort(a+1,a+n+1,cmp);for(int i=1;i<=n;i++){sum[i]=sum[i-1]+a[i].w;if(i-k+1>last && i>=k && a[i].w<sum[i-1]-sum[i-k]){cnt++; last=i; l[cnt]=i-k+1, r[cnt]=i;}if(cnt==2) break;}if(cnt==2){printf("Yes\n");for(int i=l[1];i<=r[1];i++) printf("%d ",a[i].id);for(int i=l[2];i<=r[2];i++) printf("%d ",a[i].id);return 0;}for(int i=1;i+2*k-1<=n;i++){mxp=i+2*k-1;dfs(i,0,0);if(flg) break;}if(!flg) printf("No\n");return 0;
}

这篇关于贪心、dfs--Codechef TKCONVEX的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/566015

相关文章

usaco 1.3 Barn Repair(贪心)

思路:用上M块木板时有 M-1 个间隙。目标是让总间隙最大。将相邻两个有牛的牛棚之间间隔的牛棚数排序,选取最大的M-1个作为间隙,其余地方用木板盖住。 做法: 1.若,板(M) 的数目大于或等于 牛棚中有牛的数目(C),则 目测 给每个牛牛发一个板就为最小的需求~ 2.否则,先对 牛牛们的门牌号排序,然后 用一个数组 blank[ ] 记录两门牌号之间的距离,然后 用数组 an

hdu 2489 (dfs枚举 + prim)

题意: 对于一棵顶点和边都有权值的树,使用下面的等式来计算Ratio 给定一个n 个顶点的完全图及它所有顶点和边的权值,找到一个该图含有m 个顶点的子图,并且让这个子图的Ratio 值在所有m 个顶点的树中最小。 解析: 因为数据量不大,先用dfs枚举搭配出m个子节点,算出点和,然后套个prim算出边和,每次比较大小即可。 dfs没有写好,A的老泪纵横。 错在把index在d

poj 3190 优先队列+贪心

题意: 有n头牛,分别给他们挤奶的时间。 然后每头牛挤奶的时候都要在一个stall里面,并且每个stall每次只能占用一头牛。 问最少需要多少个stall,并输出每头牛所在的stall。 e.g 样例: INPUT: 51 102 43 65 84 7 OUTPUT: 412324 HINT: Explanation of the s

poj 3050 dfs + set的妙用

题意: 给一个5x5的矩阵,求由多少个由连续6个元素组成的不一样的字符的个数。 解析: dfs + set去重搞定。 代码: #include <iostream>#include <cstdio>#include <set>#include <cstdlib>#include <algorithm>#include <cstring>#include <cm

poj 2976 分数规划二分贪心(部分对总体的贡献度) poj 3111

poj 2976: 题意: 在n场考试中,每场考试共有b题,答对的题目有a题。 允许去掉k场考试,求能达到的最高正确率是多少。 解析: 假设已知准确率为x,则每场考试对于准确率的贡献值为: a - b * x,将贡献值大的排序排在前面舍弃掉后k个。 然后二分x就行了。 代码: #include <iostream>#include <cstdio>#incl

POJ2010 贪心优先队列

c头牛,需要选n头(奇数);学校总共有f的资金, 每头牛分数score和学费cost,问合法招生方案中,中间分数(即排名第(n+1)/2)最高的是多少。 n头牛按照先score后cost从小到大排序; 枚举中间score的牛,  预处理左边与右边的最小花费和。 预处理直接优先队列贪心 public class Main {public static voi

ural 1149. Sinus Dances dfs

1149. Sinus Dances Time limit: 1.0 second Memory limit: 64 MB Let  An = sin(1–sin(2+sin(3–sin(4+…sin( n))…) Let  Sn = (…( A 1+ n) A 2+ n–1) A 3+…+2) An+1 For given  N print  SN Input One

ural 1820. Ural Steaks 贪心

1820. Ural Steaks Time limit: 0.5 second Memory limit: 64 MB After the personal contest, happy but hungry programmers dropped into the restaurant “Ural Steaks” and ordered  n specialty steaks

ural 1014. Product of Digits贪心

1014. Product of Digits Time limit: 1.0 second Memory limit: 64 MB Your task is to find the minimal positive integer number  Q so that the product of digits of  Q is exactly equal to  N. Inpu

hdu 6198 dfs枚举找规律+矩阵乘法

number number number Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Problem Description We define a sequence  F : ⋅   F0=0,F1=1 ; ⋅   Fn=Fn