summaryrefslogtreecommitdiff
path: root/924/news.cpp
blob: e48d2412f15fc3bc3660ab6e540f0e43f8111589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>
#include <vector>
#include <queue>
using namespace std;

int main(){
    int num_emps;
    cin>>num_emps;
    int *adj[num_emps];
    
    for(int i=0; i<num_emps; i++){
	arr[i] = (int*)malloc(num_emps*sizeof(int));
    }
}