QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#141330#6515. Path Planningcy1999WA 64ms28052kbC++201.0kb2023-08-17 10:47:542023-08-17 10:47:56

Judging History

你现在查看的是最新测评结果

  • [2023-08-17 10:47:56]
  • 评测
  • 测评结果:WA
  • 用时:64ms
  • 内存:28052kb
  • [2023-08-17 10:47:54]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long
int t,n,m,zy[1000005];
vector<int>p[1000005];
int ok(int x){
	int nx=1,ny=1,res=0;
	for(int i=1;i<=n;i++){
		zy[i]=0;
		for(int j=1;j<=m;j++){
			if(p[i][j]<x)zy[i]=j;
		}
	}
//	if(p[1][1]==x)return 0;
	for(int i=1;i<=n+m-2;i++){
		if(ny==m){
			nx++;
			if(p[nx][ny]<x)res++;
		}else if(nx==n){
			ny++;
			if(p[nx][ny]<x)res++;
		}else if(p[nx][ny+1]<x){
			ny++;res++;
		}else if(p[nx+1][ny]<x){
			nx++;res++;
		}else if(p[nx][ny+1]!=x&&zy[nx]>ny){
			ny++;
		}else{
			nx++;
		}
	//	if(p[nx][ny]==x)return 0;
	}
//	cout<<x<<" "<<res<<endl;
	return res>=x-1;
}
signed main(){
	cin>>t;
	while(t--){
		for(int i=1;i<=n;i++)p[i].clear(),zy[i]=0;
		cin>>n>>m;
		for(int i=1;i<=n;i++){
			p[i].push_back(0);
			for(int j=1;j<=m;j++){
				int x;
				scanf("%lld",&x);
				p[i].push_back(x);
			}
		}
		int l=0,r=1e6;
		while(l<r){
			int mid=l+r+1>>1;
			if(ok(mid))l=mid;
			else r=mid-1;
		}
		printf("%lld\n",l);
	}
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 27784kb

input:

2
2 3
1 2 4
3 0 5
1 5
1 3 0 4 2

output:

3
5

result:

ok 2 number(s): "3 5"

Test #2:

score: -100
Wrong Answer
time: 64ms
memory: 28052kb

input:

10000
2 9
4 0 3 5 2 7 16 11 12
9 13 14 17 10 8 15 1 6
4 8
19 23 22 13 29 4 17 26
30 6 25 3 15 24 18 14
12 8 7 9 27 5 0 10
11 16 31 20 2 28 1 21
1 6
3 2 0 1 4 5
2 3
4 2 0
3 5 1
5 1
4
0
3
2
1
1 3
1 0 2
8 10
9 50 8 0 41 57 60 30 23 65
64 21 36 12 10 5 58 19 38 67
71 52 45 17 77 4 59 51 22 25
56 49 79 2...

output:

9
4
6
4
5
3
14
13
5
9
5
7
7
9
7
6
6
7
10
9
11
9
8
3
6
10
4
3
10
4
14
5
12
4
7
6
9
2
1
5
6
11
8
4
3
5
2
5
7
13
6
10
2
10
3
6
9
8
4
10
3
3
6
5
8
5
7
7
7
8
8
6
6
5
5
8
7
10
3
3
6
5
5
3
6
5
12
7
3
11
7
7
5
10
9
5
4
11
2
6
3
8
7
10
6
5
10
4
7
5
6
6
13
8
3
6
7
4
8
5
8
4
12
5
4
6
9
7
8
4
7
6
3
7
6
4
8
6
9
...

result:

wrong answer 2nd numbers differ - expected: '2', found: '4'