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

Codeforces 628B - New Skateboard

时间:2017-07-31 18:49:38      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:sync   size   .com   http   for   href   fine   cout   span   

628B - New Skateboard

思路:dp

代码:

#include<bits/stdc++.h>
using namespace std;
#define ll long long 
#define pb push_back
#define ls rt<<1,l,m
#define rs rt<<1|1,m+1,r
const int INF=0x3f3f3f3f;
const int N=3e5+5; 
ll dp[N]={0};
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    string s;
    cin>>s;
    ll ans=0;
    if((s[0]-0)%4==0)dp[0]=1;
    for(int i=1;i<s.size();i++)
    {
        int x=s[i]-0;
        if(x%4==0)dp[i]=dp[i-1]+1;
        else dp[i]=dp[i-1];
        int y=s[i-1]-0;
        int n=y*10+x;
        if(n%4==0)dp[i]+=i;
    }
    cout<<dp[s.size()-1]<<endl;
    return 0;
}

 

Codeforces 628B - New Skateboard

标签:sync   size   .com   http   for   href   fine   cout   span   

原文地址:http://www.cnblogs.com/widsom/p/7264377.html

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