UVA SOlution 132 - Bumpy Objects - Solution in C++ | Volume 1 - 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

Saturday, April 29, 2017

UVA SOlution 132 - Bumpy Objects - Solution in C++ | Volume 1

UVA SOlution 132 - Bumpy Objects - Solution in C++ | Volume 1



Problem Name: Bumpy Objects
Problem Number : UVA - 132
Online Judge : UVA Online Judge Solution
Volume: 1
Solution Language : C plus plus

UVA Solution 132 Code in CPP:


#include <stdio.h> 
#include <math.h>
#include <string.h>
#include <algorithm>
using namespace std;
#define eps 1e-6
struct Pt {
    double x, y;
    Pt(double a = 0, double b = 0):
     x(a), y(b) {}
    bool operator<(const Pt &a) const {
        if(fabs(x-a.x) > eps)
            return x < a.x;
        return y < a.y;
    }
 Pt operator-(const Pt &a) const {
  Pt ret;
  ret.x = x - a.x;
  ret.y = y - a.y;
        return ret;
    }
};
double dot(Pt a, Pt b) {
 return a.x * b.x + a.y * b.y;
}
double cross2(Pt a, Pt b) {
 return a.x * b.y - a.y * b.x;
}
double cross(Pt o, Pt a, Pt b) {
    return (a.x-o.x)*(b.y-o.y)-(a.y-o.y)*(b.x-o.x);
}
int between(Pt a, Pt b, Pt c) {
 return dot(c - a, b - a) >= 0 && dot(c - b, a - b) >= 0;
}
int onSeg(Pt a, Pt b, Pt c) {
 return between(a, b, c) && fabs(cross(a, b, c)) < eps;
}
int monotone(int n, Pt p[], Pt ch[]) {
    sort(p, p+n);
    int i, m = 0, t;
    for(i = 0; i < n; i++) {
        while(m >= 2 && cross(ch[m-2], ch[m-1], p[i]) <= 0)
            m--;
        ch[m++] = p[i];
    }
    for(i = n-1, t = m+1; i >= 0; i--) {
        while(m >= t && cross(ch[m-2], ch[m-1], p[i]) <= 0)
            m--;
        ch[m++] = p[i];
    }
    return m - 1;
}
int main() {
 char testcase[105];
 Pt P[1024], CH[1024], IN[1024];
 while(scanf("%s", testcase) == 1) {
  if(!strcmp(testcase, "#"))
   break;
  double  x, y;
  int  n = 0, m;
  Pt mc;
  scanf("%lf %lf", &mc.x, &mc.y);
  while(scanf("%lf %lf", &x, &y) == 2) {
   if(x == 0 && y == 0)
    break;
   IN[n] = P[n] = Pt(x, y);
   n++;
  }
  m = monotone(n, P, CH);
  int ret = 0x3f3f3f3f;
  for(int i = 0, j = m - 1; i < m; j = i++) {
   if(between(CH[i], CH[j], mc)) {
    int mn = 0;
    for(int k = 0; k < n; k++)
     if(onSeg(CH[i], CH[j], IN[k]))
      mn = max(mn, k);
    ret = min(ret, mn);
   }
  }
  printf("%-20s%d\n", testcase, ret + 1);
 }
 return 0;
}

No comments:

Post a Comment