Wednesday 20 January 2016

Solution of URI 1267 :: LIVE ARCHIVE 3470 :: Pascal Library


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 N, D,i,j,sum,k,l;
    while(1)
    {
        scanf("%d%d", &N, &D);
        if(N==0 && D==0) break;

        int ara[D][N];
        for(i=0; i<D; i++)
        {
            for(j=0; j<N; j++)
                scanf("%d", &ara[i][j]);
        }

        for(k=0; k<N; k++)
        {
            for(l=0,sum=0; l<D; l++)
                sum+=ara[l][k];
            if(sum==D)
            {
                printf("yes\n");
                break;
            }
            else sum=0;
        }
        if(sum==0) printf("no\n");
    }
    return 0;
}



0 comments:

Post a Comment

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