রবিবার, ১৮ নভেম্বর, ২০১৮

UVA 10285 - Longest Run on a Snowboard

///...................SUBHASHIS MOLLICK...................///
///.....DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING....///
///.............ISLAMIC UNIVERSITY,BANGLADESH.............///
///....................SESSION-(14-15)....................///
#include<bits/stdc++.h>
using namespace std;
#define sf(a) scanf("%lld",&a)
#define sf2(a,b) scanf("%lld %lld",&a,&b)
#define sf3(a,b,c) scanf("%lld %lld %lld",&a,&b,&c)
#define pf(a) printf("%lld",a)
#define pf2(a,b) printf("%lld %lld",a,b)
#define pf3(a,b,c) printf("%lld %lld %lld",a,b,c)
#define nl printf("\n")
#define   timesave              ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define ll long long
#define pb push_back
#define MPI map<int,int>mp;
#define fr(i,n) for(i=0;i<n;i++)
#define fr1(i,n) for(i=1;i<=n;i++)
#define frl(i,a,b) for(i=a;i<=b;i++)
/*primes in range 1 - n
1 - 100(1e2) -> 25 pimes
1 - 1000(1e3) -> 168 primes
1 - 10000(1e4) -> 1229 primes
1 - 100000(1e5) -> 9592 primes
1 - 1000000(1e6) -> 78498 primes
1 - 10000000(1e7) -> 664579 primes
large primes ->
104729 1299709 15485863 179424673 2147483647 32416190071 112272535095293 48112959837082048697
*/
//freopen("Input.txt","r",stdin);
//freopen("Output.txt","w",stdout);
//const int fx[]={+1,-1,+0,+0};
//const int fy[]={+0,+0,+1,-1};
//const int fx[]={+0,+0,+1,-1,-1,+1,-1,+1};   // Kings Move
//const int fy[]={-1,+1,+0,+0,+1,+1,-1,-1};  // Kings Move
//const int fx[]={-2, -2, -1, -1,  1,  1,  2,  2};  // Knights Move
//const int fy[]={-1,  1, -2,  2, -2,  2, -1,  1}; // Knights Move
long dp[105][105],ar[105][105],r,c;
long call(long i1,long j1)
{
    if(dp[i1][j1]!=-1)
        return dp[i1][j1];
    long up=0,down=0,left=0,right=0;
    if(i1!=0&&ar[i1-1][j1]<ar[i1][j1])
    {
        up=call(i1-1,j1)+1;
    }
    if(i1!=r-1&&ar[i1+1][j1]<ar[i1][j1])
    {
        down=call(i1+1,j1)+1;
    }
    if(j1!=0&&ar[i1][j1-1]<ar[i1][j1])
    {
        left=call(i1,j1-1)+1;
    }
    if(j1!=c-1&&ar[i1][j1+1]<ar[i1][j1])
    {
       right=call(i1,j1+1)+1;
    }
    return max(up,max(down,max(left,right)));
}
main()
{
    timesave;
    long ts;
    cin>>ts;
    while(ts--)
    {
       string s;
       long i,j,mx=0;
        memset(dp,-1,sizeof(dp));
        cin>>s>>r>>c;
        for(i=0; i<r; i++)
        {
            for(j=0; j<c; j++)
            {
                cin>>ar[i][j];
            }
        }
        for(i=0; i<r; i++)
        {
            for(j=0; j<c; j++)
            {
                long len=call(i,j);
                mx=max(mx,len);
            }
        }
        cout<<s<<": "<<mx+1<<endl;
    }
}

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন

Factorization with prime Sieve

vector <int> prime; char sieve[1000009]; int N=1000009; void primeSieve ( ) { sieve[0] = sieve[1] = 1; prime.push_back(2); ...