26 November 2015

uva 587- There's treasure everywhere!

/***
Md. Namzul Hasan
Shahjalal University of Science & Technology,Sylhet.
hasan08sust@gmail.com
***/
#include<bits/stdc++.h>
using namespace std ;
typedef long long ll ;
typedef int in ;
typedef unsigned long long ull ;
const double pi = 2*acos(0) ;
#define maxi 40000
#define pf printf
#define sc scanf
#define pb push_back
#define MEM(x,y) (memset((x),(y),sizeof(x)))
#define MIN(x,y) ((x) < (y) ? (x) : (y))
#define MAX(x,y) ((x) > (y) ? (x) : (y))
#define load(array,size)  for(int i=0 ; i<size ; i++) cin>>array[i]  ;
#define new_line  pf("\n")
#define clear_data(array) memset(array,0,sizeof(array))
#define highest_int 2147483647

int main()
{
    char ch ;
    string str ;
    int d =0 ;
    double x =0,y=0 ;
    int cnt= 1 ;

    while(cin>>ch)
    {
        if(ch>='0' && ch<='9')
            d = d*10 + ch-'0' ;
        else if(ch=='E' || ch=='N' || ch=='D' || ch=='S' || ch=='W')
        {
            str+=ch ;
            if(str=="END")
                break ;
        }
        else if(ch==',' || ch=='.')
        {
            if(str == "E")
                x+=d ;
            else if(str=="N")
                y+=d ;
            else if(str=="S")
                y-=d ;
            else if(str=="W")
                x-=d ;
            else if(str=="NE")
            {
                x = x + (d*cos(45*pi/180.0)) ;
                y = y+ (d*sin(45*pi/180.0)) ;
            }
            else if(str=="NW")
            {
                x = x - (d*cos(45*pi/180.0)) ;
                y = y+ (d*sin(45*pi/180.0)) ;
            }
            else if(str=="SW")
            {
                x = x - (d*cos(45*pi/180.0)) ;
                y = y- (d*sin(45*pi/180.0)) ;
            }
            else if(str=="SE")
            {
                x = x + (d*cos(45*pi/180.0)) ;
                y = y- (d*sin(45*pi/180.0)) ;
            }

            d= 0;
            str = "" ;

            if(ch=='.')
            {
                double dis = sqrt((x*x) + (y*y)) ;
                pf("Map #%d\n",cnt++) ;
                pf("The treasure is located at (%.3lf,%.3lf).\n",x,y) ;
                pf("The distance to the treasure is %.3lf.\n\n",dis) ;
                x=0 ;
                y =0 ;
                dis =0 ;
            }
        }
    }
    return 0;
}

No comments:

Post a Comment

UVA 10679 - I Love Strings!!