-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsec.cpp
45 lines (45 loc) · 821 Bytes
/
sec.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
//#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);
// string s;
// vector<int> buss;
// string pos;
// vector<int> pos;
// cin >> s;
// cin >> pos;
// for (size_t i = 0; i < s.size(); i+2)
// {
// buss.push_back(s[i]-'0');
// }
// for (size_t i = 0; i < s.size(); i + 2)
// {
// pos.push_back(s[i] - '0');
// }
//
// system("pause");
// return 0;
//}