Datasets:

ArXiv:
License:
denisko's picture
cnanged dir structure and removed features file
3e77472
import java.util.*;
public class Job{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
System.out.println("Enter the number of Jobs");
int n = sc.nextInt();
String a[] = new String[n];
int b[] = new int[n];
int c[] = new int[n];
for(int i=0;i<n;++i){
System.out.println("Enter the jobs");
a[i] = sc.next();
System.out.println("Enter the profits");
b[i] = sc.nextInt();
System.out.println("Enter the DeadLine");
c[i] = sc.nextInt();
}
System.out.println("Arranged Order--");
System.out.print("Jobs: ");
for(int i=0;i<n;i++){
System.out.print(a[i]+" ");
}
System.out.println();
System.out.print("Profits: ");
for(int i=0;i<n;i++){
System.out.print(b[i]+" ");
}
System.out.println();
System.out.print("Deadline: ");
for(int i=0;i<n;i++){
System.out.print(c[i]+" ");
}
System.out.println();
// Sort the job based on the profit
for(int i=0;i<n-1;i++){
for(int j=i+1;j<n;j++){
if(b[i]<b[j]){
int temp = b[i];
b[i] = b[j];
b[j] = temp;
temp = c[i];
c[i] = c[j];
c[j] = temp;
String temp1 = a[i];
a[i] = a[j];
a[j] = temp1;
}
}
}
System.out.println();
System.out.println("Sorted Order--");
System.out.print("Jobs: ");
for(int i=0;i<n;i++){
System.out.print(a[i]+" ");
}
System.out.println();
System.out.print("Profits: ");
for(int i=0;i<n;i++){
System.out.print(b[i]+" ");
}
System.out.println();
System.out.print("Deadline: ");
for(int i=0;i<n;i++){
System.out.print(c[i]+" ");
}
System.out.println();
// main algorithm
int max = c[0];
for(int i=0;i<n;++i){
if(c[i] >max){
max = c[i];
}
}
String x[] = new String[max];
int xx[] = new int[max];
int profit = 0;
for(int i = 0; i<n; i++){
int pp = c[i];
pp = pp-1;
if(x[pp]==null){
x[pp] = a[i];
profit+=b[i];
}
else{
while(pp!=-1){
if(x[pp]==null){
x[pp] = a[i];
profit+=b[i];
break;
}
pp = pp-1;
}
}
}
for(int i=0; i<max;++i){
System.out.print("-->"+x[i]);
}
System.out.println();
System.out.println("Profit earned "+profit);
}
}