博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces1209B
阅读量:5289 次
发布时间:2019-06-14

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

水题,枚举就好了,我枚举到了129个周期.

别忘了一个灯如果亮了就会一直亮着除非到下次改变状态.

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define MEM(x,y) memset ( x , y , sizeof ( x ) )#define rep(i,a,b) for (int i = (a) ; i <= (b) ; ++ i)#define per(i,a,b) for (int i = (a) ; i >= (b) ; -- i)#define pii pair < int , int >#define one first#define two second#define rint read
#define int long long#define pb push_backusing std::queue ;using std::set ;using std::pair ;using std::max ;using std::min ;using std::priority_queue ;using std::vector ;using std::swap ;using std::sort ;using std::unique ;using std::greater ;template < class T > inline T read () { T x = 0 , f = 1 ; char ch = getchar () ; while ( ch < '0' || ch > '9' ) { if ( ch == '-' ) f = - 1 ; ch = getchar () ; } while ( ch >= '0' && ch <= '9' ) { x = ( x << 3 ) + ( x << 1 ) + ( ch - 48 ) ; ch = getchar () ; } return f * x ;}const int N = 1e2 + 10 ;const int M = 5e3 + 10 ;int on[M] , ans ;int n , p[N][2] ;char s[N] ;signed main (int argc , char * argv[]) { n = rint () ; scanf ("%s" , s + 1 ) ; rep ( i , 1 , n ) { p[i][0] = rint () ; p[i][1] = rint () ; } rep ( i , 1 , n ) if ( s[i] == '1' ) rep ( j , 0 , p[i][1] - 1 ) ++ on[j] ; rep ( i , 1 , n ) { bool f = ( s[i] == '1' ) ; int tot = 0 ; for (int j = p[i][1] ; tot <= 129 ; j += p[i][0]) { f ^= 1 ; ++ tot ; if ( f ) rep ( k , j , j + p[i][0] - 1 ) ++ on[k] ; } } rep ( i , 0 , M - 1 ) ans = max ( ans , on[i] ) ; printf ("%lld\n" , ans ) ; return 0 ;}

转载于:https://www.cnblogs.com/Equinox-Flower/p/11536029.html

你可能感兴趣的文章
命令行展开
查看>>
97. Interleaving String
查看>>
PHP $_SERVER 及用户真实IP
查看>>
css3伪类和伪元素你都懂了吗
查看>>
JS与OC交互--简单使用
查看>>
jenkins执行单元测试,会产生大量临时文件,要及时删除,不然会把inode耗尽
查看>>
[CF 487C Prefix Product Sequence]
查看>>
Zookeeper集群介绍及其搭建
查看>>
Cannot open precompiled header file: 'Debug/<Project-Name>.pch': No such fil
查看>>
实用Android开发工具和资源精选
查看>>
TileMap
查看>>
设计模式-中介者模式(Mediator)
查看>>
JS属性大全
查看>>
JavaScript位运算符 2
查看>>
XE 画矩形实现拖拉改变大小(属性)
查看>>
Sphinx全文检索
查看>>
WPF中DataGrid得到其中一行的值
查看>>
Java多线程—使用初步
查看>>
java复制文件
查看>>
CSS垂直居中和水平居中的几种方法
查看>>