結果

問題 No.2242 Cities and Teleporters
ユーザー kotatsugamekotatsugame
提出日時 2023-03-10 21:46:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 487 ms / 3,000 ms
コード長 1,179 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 86,432 KB
実行使用メモリ 48,136 KB
最終ジャッジ日時 2024-09-18 04:02:17
合計ジャッジ時間 11,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
24,040 KB
testcase_01 AC 5 ms
23,916 KB
testcase_02 AC 4 ms
23,912 KB
testcase_03 AC 5 ms
23,916 KB
testcase_04 AC 5 ms
24,044 KB
testcase_05 AC 378 ms
48,132 KB
testcase_06 AC 272 ms
48,132 KB
testcase_07 AC 439 ms
48,132 KB
testcase_08 AC 487 ms
48,004 KB
testcase_09 AC 427 ms
48,128 KB
testcase_10 AC 334 ms
48,136 KB
testcase_11 AC 393 ms
48,008 KB
testcase_12 AC 402 ms
48,132 KB
testcase_13 AC 380 ms
48,004 KB
testcase_14 AC 375 ms
48,132 KB
testcase_15 AC 390 ms
48,004 KB
testcase_16 AC 396 ms
48,132 KB
testcase_17 AC 419 ms
48,004 KB
testcase_18 AC 305 ms
47,840 KB
testcase_19 AC 310 ms
47,576 KB
testcase_20 AC 328 ms
47,052 KB
testcase_21 AC 335 ms
47,172 KB
testcase_22 AC 321 ms
47,096 KB
testcase_23 AC 331 ms
48,008 KB
testcase_24 AC 334 ms
48,000 KB
testcase_25 AC 328 ms
48,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<map>
using namespace std;
int N;
int H[2<<17],T[2<<17];
int to[19][2<<17];
map<int,vector<int> >idx;
vector<int>Hs;
int inv[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N;
	for(int i=0;i<N;i++)
	{
		cin>>H[i];
		idx[H[i]].push_back(i);
	}
	for(int i=0;i<N;i++)cin>>T[i];
	for(const pair<int,vector<int> >&p:idx)Hs.push_back(p.first);
	{
		auto it=idx.begin();
		to[0][0]=-1;
		for(int i=0;i<Hs.size();i++)
		{
			if(i>0)to[0][i]=to[0][i-1];
			for(int id:it->second)
			{
				inv[id]=i;
				int t=T[id];
				int r=upper_bound(Hs.begin(),Hs.end(),t)-Hs.begin();
				to[0][i]=max(to[0][i],r-1);
			}
			it++;
		}
	}
	for(int k=1;k<19;k++)for(int i=0;i<Hs.size();i++)
	{
		if(to[k-1][i]!=-1)to[k][i]=to[k-1][to[k-1][i]];
		else to[k][i]=-1;
	}
	int Q;cin>>Q;
	for(;Q--;)
	{
		int a,b;cin>>a>>b;a--,b--;
		if(T[a]>=H[b])
		{
			cout<<"1\n";
			continue;
		}
		int u=upper_bound(Hs.begin(),Hs.end(),T[a])-Hs.begin();
		u--;
		if(u<0||to[18][u]<inv[b])
		{
			cout<<"-1\n";
			continue;
		}
		int ans=2;
		for(int k=19;k--;)if(to[k][u]<inv[b])u=to[k][u],ans+=1<<k;
		cout<<ans<<"\n";
	}
}
0