zoukankan      html  css  js  c++  java
  • [LOJ#515]「LibreOJ β Round #2」贪心只能过样例

    [LOJ#515]「LibreOJ β Round #2」贪心只能过样例

    试题描述

    QAQ

    一共有 (n) 个数,第 (i) 个数 (x_i) 可以取 ([a_i , b_i]) 中任意值。

    (S=sum{x_i^2}​​) ,求 (S) 种类数。

    输入

    第一行一个数 (n)

    然后 (n) 行,每行两个数表示 (a_i, b_i)

    输出

    输出一行一个数表示答案。

    输入示例

    5
    1 2
    2 3
    3 4
    4 5
    5 6
    

    输出示例

    26
    

    数据规模及约定

    (1 leq n, a_i, b_i leq 100)

    题解

    分析一下复杂度发现可以上 bitset。。。

    偶然发现这是博客中第一道 bitset 的题。。。

    #include <iostream>
    #include <cstdio>
    #include <cstdlib>
    #include <cstring>
    #include <cctype>
    #include <algorithm>
    #include <bitset>
    using namespace std;
    
    int read() {
    	int x = 0, f = 1; char c = getchar();
    	while(!isdigit(c)){ if(c == '-') f = -1; c = getchar(); }
    	while(isdigit(c)){ x = x * 10 + c - '0'; c = getchar(); }
    	return x * f;
    }
    
    #define maxn 1000001
    
    bitset <maxn> f, g;
    
    int main() {
    	f[0] = 1;
    	
    	int q = read();
    	while(q--) {
    		int l = read(), r = read();
    		for(int i = l; i <= r; i++)
    			if(i == l) g = f << i * i;
    			else g |= f << i * i;
    		f = g;
    	}
    	
    	printf("%d
    ", f.count());
    	
    	return 0;
    }
    
  • 相关阅读:
    省选模拟24 题解
    省选模拟23 题解
    省选模拟22 题解
    省选模拟21 题解
    省选模拟20 题解
    省选模拟19 题解
    省选模拟18 题解
    源码分析工具
    深入理解js的变量提升和函数提升
    python并发编程之IO模型
  • 原文地址:https://www.cnblogs.com/xiao-ju-ruo-xjr/p/7634929.html
Copyright © 2011-2022 走看看