結果

問題 No.905 Sorted?
ユーザー chocopuuchocopuu
提出日時 2019-10-12 00:37:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 1,626 ms
コンパイル使用メモリ 172,564 KB
実行使用メモリ 8,060 KB
最終ジャッジ日時 2024-05-04 11:19:37
合計ジャッジ時間 5,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 179 ms
6,608 KB
testcase_09 AC 109 ms
5,576 KB
testcase_10 AC 170 ms
7,648 KB
testcase_11 AC 170 ms
7,296 KB
testcase_12 AC 194 ms
7,136 KB
testcase_13 AC 196 ms
7,932 KB
testcase_14 AC 197 ms
7,928 KB
testcase_15 AC 192 ms
7,800 KB
testcase_16 AC 204 ms
8,060 KB
testcase_17 AC 203 ms
7,804 KB
testcase_18 AC 151 ms
7,804 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define REP(i,n) for(int i = 0;i < (int)(n);i++)
#define FOR(i,s,n) for(int i = s;i < (int)n;i++)
#define RREP(i,n) for(int i = (int)n-1;i >= 0;i--)
template<class T>inline bool CHMAX(T&a,T b){if(a<b){a = b;return true;}return false;}
template<class T>inline bool CHMIN(T&a,T b){if(a>b){a = b;return true;}return false;}

signed main(){
	int N;
	cin >> N;
	vector<int> a(N); for(auto& e:a)cin >> e;
	vector<int>up(N,N-1);
	RREP(i,N-1){
		if(a[i]<=a[i+1])up[i]=up[i+1];
		else up[i]=i;
	}
	vector<int>lo(N,0);
	FOR(i,1,N){
		if(a[i-1]>=a[i])lo[i]=lo[i-1];
		else lo[i]=i;
	}
	vector<pair<int,int>>ans;
	int Q;
	cin >> Q;
	while(Q--){
		int l,r;
		cin >> l >> r;
		pair<int,int>p={0,0};
		if(up[l]>=r)p.first = 1;
		if(lo[r]<=l)p.second = 1;
		ans.push_back(p);
	}
	for(auto e:ans){
		cout<<e.first<<" "<<e.second<<endl;
	}
}
0