UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#211054#3801. Thief Mastersmygr9026494ms490556kbC++111.3kb2024-08-09 09:45:302024-08-09 12:38:30

answer

#include<bits/stdc++.h>
#define pii pair<int,int>
using namespace std;
const int Max=5005;
int A,B,N;
struct Stack{
	pii p[Max];
	int last,head,type,np;
	void add(int num)
	{
		np++;
		while(np-p[last].second>=N)
			last++;
		while(last<=head and p[head].first<num*type)
			head--;
		p[++head]=make_pair(num*type,np);
	}
	int qt()
	{
		return p[last].first;
	}
	void clear()
	{
		head=0;last=1;
		np=0;
	}
};
Stack s[Max][2],in[2];
int p[Max][Max],Mx[Max][Max];

int read()
{
	char c=getchar();
	int w=0;
	while(!isdigit(c))
		c=getchar();
	while(isdigit(c))
	{
		w=w*10+c-'0';
		c=getchar();
	}
	return w;
}
int ans=0x7fffffff;
int main()
{
	A=read();B=read();N=read();
	for(int i=1;i<=A;i++)
	{
		for(int j=1;j<=B;j++)
		{
			p[i][j]=read();
		}
	}
	for(int i=1;i<=A;i++)
	{
		s[i][0].type=-1;
		s[i][1].type=1;
		s[i][0].clear();
		s[i][1].clear();
	}
	in[0].clear();
	in[1].clear();
	in[0].type=-1;
	in[1].type=1;
	for(int i=1;i<=B;i++)
	{
		for(int j=1;j<=A;j++)
		{
			s[j][0].add(p[j][i]);
			s[j][1].add(p[j][i]);
		}
		if(i<N)continue;
		for(int j=1;j<=A;j++)
		{
			in[0].add(-s[j][0].qt());
			in[1].add(s[j][1].qt());
			if(i>=N and j>=N)
				ans=min(ans,in[1].qt()+in[0].qt());
		}
		in[0].clear();in[1].clear();
	}
	printf("%d",ans);
}

详细

小提示:点击横条可展开更详细的信息

Test #1:

score: 0
Time Limit Exceeded

input:

5000 5000 1000
112860841 963292630 950228017 843100821 628111020 568250408 901169419 322571542 98853...

output:


result:


Test #2:

score: 10
Accepted
time: 51ms
memory: 392812kb

input:

5 4 2
1 2 5 6
0 17 16 0
16 17 0 1
2 10 2 1
1 2 3 2

output:

2

result:

ok single line: '2'

Test #3:

score: 10
Accepted
time: 48ms
memory: 393236kb

input:

100 100 10
2 100001 200001 300001 400001 500001 600001 700001 800001 900001 1000001 1100001 1200001 ...

output:

908999

result:

ok single line: '908999'

Test #4:

score: 10
Accepted
time: 5259ms
memory: 490552kb

input:

5000 5000 1000
8974 8293 3530 8179 6181 2983 6500 3525 2603 1983 6720 5938 9247 2494 4568 9909 3852 ...

output:

9999

result:

ok single line: '9999'

Test #5:

score: 20
Accepted
time: 5025ms
memory: 490556kb

input:

5000 5000 1000
3206 5640 1070 5846 5931 3274 6116 1741 543 6399 1626 115 92 3037 464 100 3700 2694 5...

output:

9999

result:

ok single line: '9999'

Test #6:

score: 10
Accepted
time: 5247ms
memory: 490556kb

input:

5000 5000 1000
9041 1397 3723 7115 4298 5210 8033 5608 6711 6539 7140 5331 4282 2599 59 9363 5817 25...

output:

9999

result:

ok single line: '9999'

Test #7:

score: 10
Accepted
time: 5514ms
memory: 490556kb

input:

5000 5000 1000
19636 14616 3910 15971 9484 16390 2221 13667 5771 1364 2375 15202 16870 7107 13189 16...

output:

21813

result:

ok single line: '21813'

Test #8:

score: 20
Accepted
time: 5350ms
memory: 490552kb

input:

5000 5000 1000
3628 1018 3668 18160 14975 18599 9087 10641 19468 16400 19072 16984 6583 7925 19853 1...

output:

21811

result:

ok single line: '21811'