UVA Solution 222 - Budget Travel - Solution in C++ | Volume 2 - Online Judge Solution

Latest

It is a free Online judges problems solution list. Here you can find UVA online Judge Solution, URI Online Judge Solution, Code Marshal Online Judge Solution, Spoz Online Judge Problems Solution

Sunday, April 30, 2017

UVA Solution 222 - Budget Travel - Solution in C++ | Volume 2

UVA Solution 222 - Budget Travel - Solution in C++ | Volume 2


UVA Online Judge Solution 120 - Budget Travel| Volume 2
UVA Problem Link - https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=4&page=show_problem&problem=158

Problem Name: Budget Travel
Problem Number : UVA - 222
Online Judge : UVA Online Judge Solution
Volume: 2
Solution Language : C plus plus

UVA Solution 222 Code in CPP:


#include <stdio.h>
int cent(double cost, double p) {
    double a = p*100*cost;
    char s[100];
    int cc;
    sprintf(s, "%.lf", a);
    sscanf(s, "%d", cc);
    return cc;
}
int main() {
    double dist, cap, perG, costO;
    int n;
    while(scanf("%lf", &dist) == 1) {
        if(dist == -1)
            break;
        scanf("%lf %lf %lf", &cap, &perG, &costO);
        scanf("%d", &n);
        double tcap = cap, x[100], y[100];
        int cost = 0;
        x[0] = 0, y[0] = 0;
        x[n+1] = dist;
        for(i = 1; i <= n; i++)
            scanf("%lf %lf", &x[i], &y[i]);
        for(i = 0; i <= n; i++) {
            if(tcap*perG+x[i] < x[i+1]) {
                cost += cent(y[i], cap-tcap);
                tcap = cap;
                cost += 2;
            }
        }
    }
    return 0;
}

No comments:

Post a Comment