-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmain.cpp
58 lines (55 loc) · 1.48 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//#include "pch.h"
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <chrono>
#include <bits/stdc++.h>
#include "show.h"
#include "Tree_to_String.h"
//#include "union_find.h"
//#include "quick_pow.h"
//#include "matrix_quick_pow.h"
//#include "trie.h"
//#include <random>
//#include <stdexcept>
//#include <list>
//#include <iomanip>
//#include <ratio>
//#include <ctime>
//#include <cstdio>
//#include <set>
//#include <bitset>
//#include <map>
//#include <typeinfo>
//#include <deque>
//#include <stack>
//#include <queue>
//#include <sstream>
//#include <fstream>
//#include <cmath>
//#include <unordered_map>
//#include <unordered_set>
//#include <cstdlib>
//#include <numeric>
/*---------------------------------------*/
using namespace std;
typedef pair<int,int> pii;
typedef long long ll;
/*---------------------------------------*/
/*---------------------------------------*/
int main()
{
using namespace std::chrono;
steady_clock::time_point t_begin = steady_clock::now();
/*---------------------------------------*/
/*---------------------------------------*/
steady_clock::time_point t_end = steady_clock::now();
duration<double> time_span = duration_cast<duration<double>>(t_end - t_begin);
cout << endl
<< "---------------------------------------" << endl;
cout << "It takes " << time_span.count() * 1000 << " ms.";
return 0;
}
/*---------------------------------------*/
/*---------------------------------------*/