-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththe.cpp
73 lines (73 loc) · 1.18 KB
/
the.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//#include<bits/stdc++.h>
//#include <iomanip>
//using namespace std;
//
//void printResult(vector<vector<int> >& result)
//{
// for (int i = 0; i<result.size(); i++) {
// for (int j = 0; j<result[i].size(); j++) {
// cout << setiosflags(ios::fixed) << setprecision(2) << result[i][j] << endl;
// }
//
// }
//}
//
//void printArray(vector<float>& v) {
//
// for (int i = 0; i<v.size(); i++) {
// cout << setprecision(3) << v[i] << endl;
// }
//}
//
//
//
//int main()
//{
// ios::sync_with_stdio(0);
// cin.tie(0);
// int n, m;
// vector<set<int>> reader;
// set<int> a;
//
//
// cin >> n >> m;
// vector<int> soccer(n,0);
// for (size_t i = 0; i < m; i++)
// {
// int temp;
// while (cin>>temp)
// {
// reader[i].insert(temp);
// }
// }
// for (size_t i = 0; i < n; i++)
// {
// for (size_t j = 0; j < m; j++)
// {
// if (reader[j].count(i) == 1)
// soccer[i]++;
// }
//
// }
// int max = 0;
// int maxidx;
// for (size_t i = 0; i < n; i++)
// {
// if (soccer[i]>max)
// {
// max = soccer[i];
// maxidx = i;
// }
// }
//
// for (size_t i = 0; i < m; i++)
// {
// if (reader[i].count(maxidx) == 1)
// reader.erase(reader[i]);
// }
//
//
//
// system("pause");
// return 0;
//}