博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
洛谷 P1311 选择客栈 —— 水题
阅读量:5289 次
发布时间:2019-06-14

本文共 637 字,大约阅读时间需要 2 分钟。

题目:

看每个位置能否成为咖啡店,然后作为客栈和前面配对即可。

代码如下:

#include
#include
#include
#include
using namespace std;int const xn=2e5+5,xm=55;int n,k,p,cn[xm],sum[xm],ans;int rd(){ int ret=0,f=1; char ch=getchar(); while(ch<'0'||ch>'9'){
if(ch=='-')f=0; ch=getchar();} while(ch>='0'&&ch<='9')ret=(ret<<3)+(ret<<1)+ch-'0',ch=getchar(); return f?ret:-ret;}int main(){ n=rd(); k=rd(); p=rd(); for(int i=1,col,v;i<=n;i++) { col=rd(); v=rd(); sum[col]++; if(v<=p) { for(int j=0;j

 

转载于:https://www.cnblogs.com/Zinn/p/9747747.html

你可能感兴趣的文章
Python开发【程序】:登录认证程序
查看>>
Linux查看文件编码格式及文件编码转换<转>
查看>>
Leetcode: Find Leaves of Binary Tree
查看>>
Chrome多线程模型
查看>>
运行第一个module
查看>>
Hadoop使用场景
查看>>
MYSQL--表分区、查看分区
查看>>
CCNA第三章
查看>>
MySQL 基础 (二)- 表操作
查看>>
SpringBoot13 利用mybatis-plus自动生成entity、dao、service、controller
查看>>
Vue 模板解释
查看>>
http://www.bootcss.com/
查看>>
20145308 《网络对抗》 注入shellcode+Return-to-libc攻击 学习总结
查看>>
跨域访问
查看>>
将多张图片和文字合成一张图片
查看>>
自己动手写ORM(01):解析表达式树生成Sql碎片
查看>>
code3731 寻找道路
查看>>
maven内置属性
查看>>
java 的File文件
查看>>
如何使用USBWebserver在本机快速建立网站测试环境
查看>>