結果

問題 No.905 Sorted?
ユーザー tko919tko919
提出日時 2019-10-12 00:09:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,081 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 167,996 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 10:16:41
合計ジャッジ時間 3,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 23 ms
6,944 KB
testcase_10 WA -
testcase_11 AC 34 ms
6,944 KB
testcase_12 AC 38 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 40 ms
6,940 KB
testcase_16 AC 41 ms
6,940 KB
testcase_17 AC 41 ms
6,944 KB
testcase_18 AC 32 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//template
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(a);i>(b);i--)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll; typedef pair<ll, ll> P;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename A,size_t N,typename T>void Fill(A(&array)[N],const T &val){fill((T*)array, (T*)(array+N), val);}
const int inf = 0x3fffffff; const ll INF = 0x3fffffffffffffff;
//template end



int main(){
    int n; scanf("%d",&n);
    vector<int> a(n);
    rep(i,0,n)scanf("%d",&a[i]);
    int rui[2][100010]={};
    rep(i,0,n-1)rui[0][i+1]=(a[i]<=a[i+1]),rui[1][i+1]=(a[i]>=a[i+1]);
    rep(i,0,n-1)rui[0][i+1]+=rui[0][i],rui[1][i+1]+=rui[1][i];
    int q; scanf("%d",&q);
    rep(i,0,q){
        int l,r; scanf("%d%d",&l,&r);
        printf("%d %d\n",(rui[0][r]-rui[0][l]==r-l),(rui[1][r]-rui[1][l]==r-l));
    }
    return 0;
}
0