結果

問題 No.905 Sorted?
ユーザー chocopuuchocopuu
提出日時 2019-10-12 00:18:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 828 bytes
コンパイル時間 1,502 ms
コンパイル使用メモリ 173,808 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-05-04 10:44:09
合計ジャッジ時間 5,291 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 187 ms
6,944 KB
testcase_09 AC 113 ms
6,940 KB
testcase_10 AC 173 ms
7,652 KB
testcase_11 AC 169 ms
7,428 KB
testcase_12 AC 214 ms
7,136 KB
testcase_13 AC 203 ms
7,808 KB
testcase_14 AC 206 ms
7,804 KB
testcase_15 AC 211 ms
7,808 KB
testcase_16 AC 212 ms
7,804 KB
testcase_17 WA -
testcase_18 AC 151 ms
7,804 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,940 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;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;
		ans.push_back({up[l]>=r,lo[r]<=l});
	}
	for(auto e:ans){
		cout<<e.first<<" "<<e.second<<endl;
	}
}
0