結果

問題 No.905 Sorted?
ユーザー kotatsugamekotatsugame
提出日時 2019-10-12 00:59:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 64,240 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 12:06:52
合計ジャッジ時間 3,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 183 ms
5,376 KB
testcase_09 AC 118 ms
5,376 KB
testcase_10 AC 186 ms
5,376 KB
testcase_11 AC 183 ms
5,376 KB
testcase_12 AC 221 ms
5,376 KB
testcase_13 AC 222 ms
5,376 KB
testcase_14 AC 200 ms
5,376 KB
testcase_15 AC 189 ms
5,376 KB
testcase_16 AC 205 ms
5,376 KB
testcase_17 AC 214 ms
5,376 KB
testcase_18 AC 156 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N;
long A[1<<17];
int UP[1<<17],DW[1<<17];
main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>A[i];
	UP[0]=DW[0]=0;
	for(int i=1;i<N;i++)
	{
		UP[i]=DW[i]=i;
		if(A[i-1]<=A[i])UP[i]=UP[i-1];
		if(A[i-1]>=A[i])DW[i]=DW[i-1];
	}
	int Q;cin>>Q;
	for(;Q--;)
	{
		int L,R;cin>>L>>R;
		cout<<(UP[R]<=L)<<" "<<(DW[R]<=L)<<endl;
	}
}
0