Wednesday 13 January 2016

Solution of LIGHT OJ 1389 :: Scarecrow


Before seeing the solution make sure that you tried enough. Don’t paste the whole code, just find out the logic. If you stuck in trouble, just inform me on comment.

/**Bismillahir Rahmanir Rahim.**/

#include <stdio.h>
int main()
{
    int tst, k, cnt, ans, i;
    scanf("%d", &tst);
    for(k=1; k<=tst; k++)
    {
        int n;
        scanf("%d", &n);
        char field[n+1];
        scanf("%s", field);
        for(i=0, cnt=0, ans = 0; i<n; i++)
        {
            if(field[i] == '.')
            {
                ans++;
                i += 2;
            }
        }
        printf("Case %d: %d\n", k, ans);
    }
    return 0;
}

0 comments:

Post a Comment

Note: only a member of this blog may post a comment.