結果

問題 No.1767 BLUE to RED
ユーザー kotatsugamekotatsugame
提出日時 2021-11-26 22:40:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 67,456 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 18:16:39
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 92 ms
5,376 KB
testcase_10 AC 121 ms
5,376 KB
testcase_11 AC 102 ms
5,376 KB
testcase_12 AC 91 ms
5,376 KB
testcase_13 AC 128 ms
5,376 KB
testcase_14 AC 160 ms
5,376 KB
testcase_15 AC 160 ms
5,376 KB
testcase_16 AC 159 ms
5,376 KB
testcase_17 AC 159 ms
5,376 KB
testcase_18 AC 159 ms
5,376 KB
testcase_19 AC 154 ms
5,376 KB
testcase_20 AC 157 ms
5,376 KB
testcase_21 AC 158 ms
5,376 KB
testcase_22 AC 159 ms
5,376 KB
testcase_23 AC 163 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:5:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    5 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N,M,A[2<<17],B[2<<17];
main()
{
	cin>>N>>M;
	for(int i=0;i<N;i++)cin>>A[i];
	for(int i=0;i<M;i++)cin>>B[i];
	int id=0;
	int ans=0;
	for(int i=0;i<M;)
	{
		while(id<N&&A[id]<B[i])id++;
		int L=id>0?A[id-1]:-1e9;
		int R=id<N?A[id]:2e9;
		int j=i;
		while(j<M&&B[j]<R)j++;
		if(i+1==j)
		{
			ans+=min(R-B[i],B[i]-L);
		}
		else
		{
			int now=min(R-B[i],B[j-1]-L);
			for(int k=i;k+1<j;k++)
			{
				now=min(now,R-B[k+1]+B[k]-L);
			}
			ans+=now;
		}
		i=j;
	}
	cout<<ans<<endl;
}
0