瞎搞-贪心-NOIP前42天-入门-喷水装置

2024-03-24 14:48

本文主要是介绍瞎搞-贪心-NOIP前42天-入门-喷水装置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

作死三部曲:
Step 1

#include<bits/stdc++.h>
#define rep(i,l,r) for(int i=(l);i<=(r);i++)
#define per(i,r,l) for(int i=(r);i>=(l);i--)
#define random(l,r) ((l)+rand()%((r)-(l)+1))
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
const int inf=1e9+10,N=20000;
const double eps=1e-6;
struct node{double a,b;}p[N];
bool compare(node a,node b){ return a.a<b.a;}
int t,n;
double l,w,x,r;
int main(){ios::sync_with_stdio(false); cin.tie(0);cin>>t;while(t--){memset(p,0,sizeof(p));double last=0,now=0; int ans=0;cin>>n>>l>>w;rep(i,1,n){cin>>x>>r;if(r*2<=w) continue;p[i].a=x-sqrt((double)r*r-w*w/4.0f);p[i].b=x+sqrt((double)r*r-w*w/4.0f);}sort(p+1,p+1+n,compare);rep(i,1,n){if(p[i].a>last){if(now>0) ans++,last=now,now=0;else{ans=-1;break;}}if(p[i].b>=last) now=max(now,p[i].b);}if(last<l) cout<<0<<endl;else cout<<ans<<endl;}return 0;
}

到最后的时候now里可能还有值,也就是最后的那个喷水装置没被使用,因为最后一个不会在循环中被更新。因此导致答案错误。(本来可以覆盖的结果变成不能覆盖的了)。
Step 2:

#include<bits/stdc++.h>
#define rep(i,l,r) for(int i=(l);i<=(r);i++)
#define per(i,r,l) for(int i=(r);i>=(l);i--)
#define random(l,r) ((l)+rand()%((r)-(l)+1))
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
const int inf=1e9+10,N=20000;
const double eps=1e-6;
struct node{double a,b;}p[N];
bool compare(node a,node b){ return a.a<b.a;}
int t,n;
double l,w,x,r;
int main(){ios::sync_with_stdio(false); cin.tie(0);cin>>t;while(t--){memset(p,0,sizeof(p));double last=0,now=0; int ans=0;cin>>n>>l>>w;rep(i,1,n){cin>>x>>r;if(r*2<=w) continue;p[i].a=x-sqrt((double)r*r-w*w/4.0f);p[i].b=x+sqrt((double)r*r-w*w/4.0f);}sort(p+1,p+1+n,compare);rep(i,1,n){if(p[i].a>last){if(now>0) ans++,last=now,now=0;else{ans=-1;break;}}if(p[i].b>=last) now=max(now,p[i].b);}***if(now>0) ans++,last=now,now=0;***if(last<l) cout<<0<<endl;else cout<<ans<<endl;}return 0;
}

将最后本该使用的喷水装置使用了,以为要AC了,结果又WA了。。因为其实有时候最后这一个喷水装置不用的话也已经完全覆盖了,再多用答案就错了。
Step 3 AC代码:

#include<bits/stdc++.h>
#define rep(i,l,r) for(int i=(l);i<=(r);i++)
#define per(i,r,l) for(int i=(r);i>=(l);i--)
#define random(l,r) ((l)+rand()%((r)-(l)+1))
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
const int inf=1e9+10,N=20000;
const double eps=1e-6;
struct node{double a,b;}p[N];
bool compare(node a,node b){ return a.a<b.a;}
int t,n;
double l,w,x,r;
int main(){ios::sync_with_stdio(false); cin.tie(0);cin>>t;while(t--){memset(p,0,sizeof(p));double last=0,now=0; int ans=0;cin>>n>>l>>w;rep(i,1,n){cin>>x>>r;if(r*2<=w) continue;p[i].a=x-sqrt((double)r*r-w*w/4.0f);p[i].b=x+sqrt((double)r*r-w*w/4.0f);}sort(p+1,p+1+n,compare);rep(i,1,n){if(p[i].a>last){if(now>0) ans++,last=now,now=0;else{ans=-1;break;}}if(p[i].b>=last) now=max(now,p[i].b);}***if((now>0)&&(last<l)) ans++,last=now,now=0;***if(last<l) cout<<0<<endl;else cout<<ans<<endl;}return 0;
}

这篇关于瞎搞-贪心-NOIP前42天-入门-喷水装置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

从入门到精通C++11 <chrono> 库特性

《从入门到精通C++11<chrono>库特性》chrono库是C++11中一个非常强大和实用的库,它为时间处理提供了丰富的功能和类型安全的接口,通过本文的介绍,我们了解了chrono库的基本概念... 目录一、引言1.1 为什么需要<chrono>库1.2<chrono>库的基本概念二、时间段(Durat

解析C++11 static_assert及与Boost库的关联从入门到精通

《解析C++11static_assert及与Boost库的关联从入门到精通》static_assert是C++中强大的编译时验证工具,它能够在编译阶段拦截不符合预期的类型或值,增强代码的健壮性,通... 目录一、背景知识:传统断言方法的局限性1.1 assert宏1.2 #error指令1.3 第三方解决

从入门到精通MySQL 数据库索引(实战案例)

《从入门到精通MySQL数据库索引(实战案例)》索引是数据库的目录,提升查询速度,主要类型包括BTree、Hash、全文、空间索引,需根据场景选择,建议用于高频查询、关联字段、排序等,避免重复率高或... 目录一、索引是什么?能干嘛?核心作用:二、索引的 4 种主要类型(附通俗例子)1. BTree 索引(

Redis 配置文件使用建议redis.conf 从入门到实战

《Redis配置文件使用建议redis.conf从入门到实战》Redis配置方式包括配置文件、命令行参数、运行时CONFIG命令,支持动态修改参数及持久化,常用项涉及端口、绑定、内存策略等,版本8... 目录一、Redis.conf 是什么?二、命令行方式传参(适用于测试)三、运行时动态修改配置(不重启服务

MySQL DQL从入门到精通

《MySQLDQL从入门到精通》通过DQL,我们可以从数据库中检索出所需的数据,进行各种复杂的数据分析和处理,本文将深入探讨MySQLDQL的各个方面,帮助你全面掌握这一重要技能,感兴趣的朋友跟随小... 目录一、DQL 基础:SELECT 语句入门二、数据过滤:WHERE 子句的使用三、结果排序:ORDE

Python中OpenCV与Matplotlib的图像操作入门指南

《Python中OpenCV与Matplotlib的图像操作入门指南》:本文主要介绍Python中OpenCV与Matplotlib的图像操作指南,本文通过实例代码给大家介绍的非常详细,对大家的学... 目录一、环境准备二、图像的基本操作1. 图像读取、显示与保存 使用OpenCV操作2. 像素级操作3.

POI从入门到实战轻松完成EasyExcel使用及Excel导入导出功能

《POI从入门到实战轻松完成EasyExcel使用及Excel导入导出功能》ApachePOI是一个流行的Java库,用于处理MicrosoftOffice格式文件,提供丰富API来创建、读取和修改O... 目录前言:Apache POIEasyPoiEasyExcel一、EasyExcel1.1、核心特性

Python中模块graphviz使用入门

《Python中模块graphviz使用入门》graphviz是一个用于创建和操作图形的Python库,本文主要介绍了Python中模块graphviz使用入门,具有一定的参考价值,感兴趣的可以了解一... 目录1.安装2. 基本用法2.1 输出图像格式2.2 图像style设置2.3 属性2.4 子图和聚

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

Python FastAPI入门安装使用

《PythonFastAPI入门安装使用》FastAPI是一个现代、快速的PythonWeb框架,用于构建API,它基于Python3.6+的类型提示特性,使得代码更加简洁且易于绶护,这篇文章主要介... 目录第一节:FastAPI入门一、FastAPI框架介绍什么是ASGI服务(WSGI)二、FastAP