blob: 4c2b74a1da7303f7f4f1b883b478ff7bc567007f (
plain)
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
|
#include <iostream>
using namespace std;
template<int N, int M>
short func(string (&S)[N][M], short (&B)[M]) {
short index{0};
short ex_count{0};
short i{0};
for(auto const& row : S) {
short count{0};
if(i > M)
break;
for(auto const& col : row) {
if(col.length() <= B[i])
++count;
}
if(count > ex_count) {
index = i;
ex_count = count;
}
++i;
}
return index;
}
int main() {
string t[2][3]{
{"greeeeee", "aaaaaaa", "bbbbbb"},
{"abc", "sooca", "icsdi"},
};
short bb[3]{3, 10};
short x = func(t, bb);
cout << x << endl;
return 0;
}
|