Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

CONVERT GIVEN C++ PROGRAM TO C PROGRAM #include #include #include using namespace std; class WeightedInterval { public: int start, finish, weight; bool operator < (const

CONVERT GIVEN C++ PROGRAM TO C PROGRAM

#include #include #include using namespace std;

class WeightedInterval { public: int start, finish, weight;

bool operator < (const WeightedInterval& x) const { if (finish != x.finish) return finish < x.finish; return start < x.start; } } *intervals;

// returns index of the interval having greatest finish time <= val in range [lo, hi] int binary_search(int lo, int hi, int val) { int mid; while (lo < hi) { mid = lo + (hi - lo + 1) / 2; if (intervals[mid].finish <= val) lo = mid; else hi = mid - 1; } if (intervals[lo].finish > val) return 0; return lo; }

// returns index of the interval having greatest finish time <= start time of interval i int greatestNonOverlappingInterval(int i) { return binary_search(0, i-1, intervals[i].start); }

int main() { int N, i, *dp, *p; printf("Enter number of intervals: "); scanf("%d", &N); //Number of intervals intervals = new WeightedInterval[N + 1]; printf("Enter intervals: "); for (i = 1; i <= N; i++) scanf("%d %d %d", &intervals[i].start, &intervals[i].finish, &intervals[i].weight);

// dummy interval used as a sentinel intervals[0].start = intervals[0].finish = intervals[0].weight = 0;

// sort intervals in non-decreasing order of finish times sort(intervals + 1, intervals + N + 1);

dp = new int[N + 1]; p = new int[N + 1]; dp[0] = p[0] = 0;

// construct the value of the optimal solution for (i = 1; i <= N; i++) { p[i] = greatestNonOverlappingInterval(i); dp[i] = max(intervals[i].weight + dp[p[i]], dp[i-1]); }

// construct the optimal solution stack opt; for (i = N; i > 0; ) { if (intervals[i].weight + dp[p[i]] >= dp[i-1]) { opt.push(i); i = p[i]; } else i--; }

// optimal solution printf("%d ", dp[N]); while (!opt.empty()) { i = opt.top(); opt.pop(); printf("%d %d %d ", intervals[i].start, intervals[i].finish, intervals[i].weight); }

return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Secrets Of Analytical Leaders Insights From Information Insiders

Authors: Wayne Eckerson

1st Edition

1935504347, 9781935504344

More Books

Students also viewed these Databases questions

Question

What does Processing of an OLAP Cube accomplish?

Answered: 1 week ago