博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
XidianOJ 1213 小V的滑板鞋
阅读量:5165 次
发布时间:2019-06-13

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

题目描述

输入

输出

摘自题解。。orz我还是太菜了

#include
using namespace std;typedef long long LL;#define m first#define w secondconst int SIZE=1e5+7;int c[SIZE];struct shoe{ int w,m;} p[SIZE];inline int lowbit(int x) { return x&-x;}void update(int x) { for(;x
0;x-=lowbit(x)) res+=c[x]; return res;}bool cmp(shoe s1,shoe s2){ return (s1.m < s2.m);}int main(){ freopen("test.in","r",stdin); int n,M,W; while((scanf("%d%d%d",&n,&M,&W)!= EOF)) { for(int i=0;i
=0;r--) { for(;l
<=M;++l) update(p[l].w); if(W-p[r].w>0) ans+=query(W-p[r].w); } for(int i=0;i
View Code

 

转载于:https://www.cnblogs.com/ToTOrz/p/7444795.html

你可能感兴趣的文章
CentOS 网络设置修改
查看>>
二分图
查看>>
python小白-day5 random模块
查看>>
Git Tips
查看>>
[Python] logging.logger
查看>>
2019春第一次课程设计报告
查看>>
Permutations
查看>>
msp430项目编程13
查看>>
msp430项目编程34
查看>>
【IIS】IIS 7.0/7.5 绑定
查看>>
[SQL] 命令远程恢复数据库
查看>>
人生得以遇见
查看>>
让 .gitignore 文件生效
查看>>
Daily Scrum 2012/11/30
查看>>
用Python3实现的Mycin专家系统简单实例
查看>>
TortoiseSVN tutorial
查看>>
poj-2376 Cleaning Shifts (排序+贪心)
查看>>
mssql 创建触发器
查看>>
2.python数据结构的性能分析
查看>>
DataTables给表格绑定事件
查看>>