CF922D Robot Vacuum Cleaner 贪心+排序

2020-12-13 15:49

阅读:311

标签:highlight   ret   ++i   scanf   put   turn   har   space   bool   

正确的贪心方法:按照比例排序. 

code: 

#include   
#define N 200000 
#define ll long long 
#define setIO(s) freopen(s".in","r",stdin) 
using namespace std; 
int n;  
char str[N],S[N];   
struct Node 
{
    int l,r; 
    double perc; 
}t[N]; 
bool cmp(Node a,Node b) 
{
    return a.perc>b.perc; 
}
int main() 
{
    int i,j,cnt=0; 
    // msetIO("input"); 
    scanf("%d",&n);          
    for(i=1;i

  

CF922D Robot Vacuum Cleaner 贪心+排序

标签:highlight   ret   ++i   scanf   put   turn   har   space   bool   

原文地址:https://www.cnblogs.com/guangheli/p/11614789.html


评论


亲,登录后才可以留言!