#include using namespace std; typedef long long int ll; int main() { ios::sync_with_stdio(false); cin.tie(0); cout<<"Enter total numbe of processes"<>n; cout<<"Enter "< processID(n); for(int i=0; i>processID[i]; } cout<<"Enter Arrival time , Burst Time , Compeltion Time of the process"< AT(n),BT(n),CT(n); for(int i=0; i>AT[i]; cin>>BT[i]; cin>>CT[i]; } vector> TAT; vector> WAT; for(int i=0; i