CF1204A BowWow and the Timetable
Posted lyt020321
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF1204A BowWow and the Timetable相关的知识,希望对你有一定的参考价值。
思路
数学题,就是找4的多少次方,由于是二进制数,直接输出(长度+1)/2就行啦!
真的吗 ?
还有这些奇怪的情况
一 . 当二进制是0的时候
二.当只有一个1的时候
总之最后上代码
#include <bits/stdc++.h>
#define int long long
using namespace std ;
string s ;
signed main ()
cin >> s ;
int n = s.size() ;int i ;
if(s[0] == '0') return puts("0") , 0 ;
else
for(i = 1 ; i < n ; i ++)
if(s[i] == '1') break ;
if(i > n-1) n = n - 1 ;
cout << (n+1) / 2 << endl ;
return 0 ;
溜了溜了!
以上是关于CF1204A BowWow and the Timetable的主要内容,如果未能解决你的问题,请参考以下文章
A. BowWow and the Timetable1000 / 模拟
2019个人训练赛第二场-A - BowWow and the Timetable