結果

問題 No.905 Sorted?
ユーザー kuhakukuhaku
提出日時 2019-10-11 22:23:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 1,420 ms
コンパイル使用メモリ 167,884 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-25 08:07:16
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,824 KB
testcase_05 AC 4 ms
6,816 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 7 ms
6,816 KB
testcase_08 AC 187 ms
6,816 KB
testcase_09 AC 115 ms
6,816 KB
testcase_10 AC 184 ms
6,816 KB
testcase_11 AC 170 ms
6,816 KB
testcase_12 AC 197 ms
6,816 KB
testcase_13 AC 214 ms
6,816 KB
testcase_14 AC 215 ms
6,816 KB
testcase_15 AC 192 ms
6,816 KB
testcase_16 AC 211 ms
6,816 KB
testcase_17 AC 202 ms
6,820 KB
testcase_18 AC 155 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define REP(i, n) for(int (i) = 0; (i) < (n); (i)++)
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) < (b) ? (a) : (b))

typedef long long ll;

int main(void){
	int n;
	cin >> n;

	ll a[n];
	ll asc[n];
	ll desc[n];
	REP(i, n){
		cin >> a[i];
	}

	REP(i, n){
		if(!i) asc[i] = 0;
		if(a[i] >= a[i-1]) asc[i] = asc[i-1]+1;
		else asc[i] = 0;
	}
	REP(i, n){
		if(!i) desc[i] = 0;
		if(a[i] <= a[i-1]) desc[i] = desc[i-1]+1;
		else desc[i] = 0;
	}

	int q;
	cin >> q;
	REP(i, q){
		int l, r;
		cin >> l >> r;
		if(asc[r] >= r-l) cout << 1 << ' ';
		else cout << 0 << ' ';
		if(desc[r] >= r-l) cout << 1 << endl;
		else cout << 0 << endl;
	}

	return 0;
}
0