結果

問題 No.2248 max(C)-min(C)
ユーザー publfl2publfl2
提出日時 2023-03-17 21:46:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 481 ms / 3,000 ms
コード長 1,330 bytes
コンパイル時間 902 ms
コンパイル使用メモリ 73,648 KB
実行使用メモリ 30,788 KB
最終ジャッジ日時 2024-09-18 10:35:33
合計ジャッジ時間 11,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,092 KB
testcase_01 AC 3 ms
7,880 KB
testcase_02 AC 3 ms
7,900 KB
testcase_03 AC 3 ms
8,004 KB
testcase_04 AC 3 ms
8,380 KB
testcase_05 AC 4 ms
9,100 KB
testcase_06 AC 4 ms
8,944 KB
testcase_07 AC 5 ms
8,648 KB
testcase_08 AC 4 ms
8,192 KB
testcase_09 AC 5 ms
9,036 KB
testcase_10 AC 4 ms
8,500 KB
testcase_11 AC 6 ms
8,844 KB
testcase_12 AC 4 ms
8,084 KB
testcase_13 AC 5 ms
8,316 KB
testcase_14 AC 5 ms
9,416 KB
testcase_15 AC 5 ms
8,196 KB
testcase_16 AC 4 ms
8,264 KB
testcase_17 AC 5 ms
8,476 KB
testcase_18 AC 200 ms
28,472 KB
testcase_19 AC 23 ms
10,488 KB
testcase_20 AC 225 ms
30,020 KB
testcase_21 AC 213 ms
28,768 KB
testcase_22 AC 141 ms
25,100 KB
testcase_23 AC 86 ms
17,180 KB
testcase_24 AC 34 ms
11,620 KB
testcase_25 AC 198 ms
27,396 KB
testcase_26 AC 185 ms
26,148 KB
testcase_27 AC 212 ms
27,708 KB
testcase_28 AC 18 ms
9,828 KB
testcase_29 AC 189 ms
26,512 KB
testcase_30 AC 67 ms
15,572 KB
testcase_31 AC 221 ms
30,528 KB
testcase_32 AC 39 ms
12,028 KB
testcase_33 AC 61 ms
14,612 KB
testcase_34 AC 225 ms
30,788 KB
testcase_35 AC 240 ms
29,760 KB
testcase_36 AC 243 ms
30,276 KB
testcase_37 AC 108 ms
19,128 KB
testcase_38 AC 399 ms
29,120 KB
testcase_39 AC 395 ms
29,120 KB
testcase_40 AC 395 ms
29,764 KB
testcase_41 AC 317 ms
27,512 KB
testcase_42 AC 368 ms
29,120 KB
testcase_43 AC 315 ms
28,540 KB
testcase_44 AC 374 ms
28,996 KB
testcase_45 AC 266 ms
25,668 KB
testcase_46 AC 119 ms
17,428 KB
testcase_47 AC 369 ms
29,248 KB
testcase_48 AC 223 ms
29,120 KB
testcase_49 AC 447 ms
29,764 KB
testcase_50 AC 458 ms
28,992 KB
testcase_51 AC 463 ms
29,888 KB
testcase_52 AC 481 ms
29,760 KB
testcase_53 AC 53 ms
12,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
#include <algorithm>
#include <map>
#include <set>
#define MAX (int)2e9 + 1

int x[200010],y[200010];
std::vector<int> index;
std::map<int,int> hash;
std::set< std::pair<int,int> > S;
std::vector<int> V[200010];
int main()
{
	int a;
	scanf("%d",&a);
	for(int i=1;i<=a;i++) scanf("%d",&x[i]);
	for(int i=1;i<=a;i++) scanf("%d",&y[i]);
	
	for(int i=1;i<=a;i++)
	{
		V[i].push_back(x[i]);
		V[i].push_back(y[i]);
		V[i].push_back((x[i]+y[i])/2);
		V[i].push_back(MAX);
		std::sort(V[i].begin(),V[i].end());
		std::reverse(V[i].begin(),V[i].end());
		S.insert(std::make_pair(V[i].back(),i));
	}
	for(int i=1;i<=a;i++) for(int j=0;j<V[i].size();j++) index.push_back(V[i][j]);
	std::sort(index.begin(),index.end());
	index.erase(std::unique(index.begin(),index.end()),index.end());
	
	int ans = MAX;
	for(int i=0;i<index.size();i++)
	{
		int limit = index[i];
		while(!S.empty())
		{
			std::set< std::pair<int,int> > ::iterator it = S.begin();
			int val = (it->first), ind = (it->second);
			if(val<limit)
			{
				S.erase(it);
				V[ind].pop_back();
				S.insert(std::make_pair(V[ind].back(),ind));
			}
			else break;
		}
		std::set< std::pair<int,int> > ::iterator it = S.end();
		it--;
		int val = (it->first);
		if(val>=MAX) break;
		ans = ans<val-limit?ans:val-limit;
	}
	printf("%d",ans);
}
0