-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCountNegative.cpp
40 lines (40 loc) · 992 Bytes
/
CountNegative.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
#include <bits/stdc++.h>
using namespace std;
//Time Complexity is O(n*m)
int countNegativeNonOptimal(std::vector<std::vector<int> > &v,int rows,int cols){
int count=0;
for(int i=0;i<rows;i++){
for(int j=0;j<cols;j++){
if(v[i][j] < 0) count++;
}
}
return count;
}
//Time Complexity is O(n+m)
int countNegativeOptimal(std::vector<std::vector<int> > &v,int rows,int cols){
int count = 0 ;
int i=0,j=cols-1;
while(i < rows && j >= 0){
if(v[i][j] < 0){
count += (j+1);
i++;
}
else j--;
}
return count ;
}
int main(int argc, char const *argv[])
{
int rows,cols;
cout << "Enter the number of rows and columns " ;
cin >> rows >> cols;
std::vector<std::vector<int> > v(rows,std::vector<int>(cols) );
for(int i=0;i<rows;i++){
for(int j=0;j<cols;j++){
cin >> v[i][j];
}
}
cout << "Number of negative number is " << countNegativeNonOptimal(v,rows,cols) << endl;
cout << "Number of negative number is " << countNegativeOptimal(v,rows,cols) << endl;
return 0;
}