-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1040.cpp
More file actions
36 lines (36 loc) · 828 Bytes
/
Copy path1040.cpp
File metadata and controls
36 lines (36 loc) · 828 Bytes
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
#include <iostream>
using namespace std;
int solve(int curm, int curn, int m, int n, int data[500][500]);
int main()
{
int x;
cin >> x;
for (int i = 0;i < x;i++)
{
int m, n, target;
cin >> m >> n >> target;
int data[1000][1000];
for (int j = 0;j < m;j++)
{
for (int k = 0;k < n;k++)
{
cin >> data[j][k];
}
}
int curm = m - 1, j = 0;
int flag = 1;
while (curm >= 0 && j < n)
{
if (data[curm][j] > target) curm--;
else if (data[curm][j] < target) j++;
else
{
cout << "true" << endl;
flag = 0;
break;
}
}
if (flag)
cout << "false" << endl;
}
}