码迷,mamicode.com
首页 > 其他好文 > 详细

简单瞎搞题

时间:2021-05-24 01:32:55      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ret   bit   info   链接   using   mes   col   include   inf   

链接:https://ac.nowcoder.com/acm/problem/17193

技术图片

 

 

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 const int N = 1000100;
 4 bitset<N>s,p;
 5 int main() {
 6     int i,n,j,x,y;
 7     cin>>n;
 8     s[0]=1;
 9     for(i=1;i<=n;i++) {
10         cin>>x>>y;
11         p.reset();
12         for(j=x;j<=y;j++) {
13             p|=(s<<(j*j));
14         }
15         s=p;
16     }
17     cout<<s.count()<<endl;
18     return 0;
19 }

 

简单瞎搞题

标签:ret   bit   info   链接   using   mes   col   include   inf   

原文地址:https://www.cnblogs.com/pangbi/p/14744153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!