結果

問題 No.905 Sorted?
ユーザー yakkiyakki
提出日時 2019-10-12 01:34:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,135 bytes
コンパイル時間 685 ms
コンパイル使用メモリ 90,388 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 14:34:38
合計ジャッジ時間 4,019 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 178 ms
6,944 KB
testcase_09 AC 109 ms
6,940 KB
testcase_10 AC 176 ms
6,944 KB
testcase_11 AC 166 ms
6,940 KB
testcase_12 AC 206 ms
6,940 KB
testcase_13 AC 211 ms
6,944 KB
testcase_14 AC 199 ms
6,944 KB
testcase_15 AC 191 ms
6,940 KB
testcase_16 AC 206 ms
6,940 KB
testcase_17 AC 204 ms
6,944 KB
testcase_18 AC 152 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<vector>
#include<algorithm>
#include<bitset>
#include<set>
#include<map>
#include<stack>
#include<queue>
#include<deque>
#include<list>
#include<iomanip>
#include<cmath>
#include<cstring>
#include<functional>
using namespace std;

#define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++)
#define rep(i, n) repr(i, 0, n)
#define INF 2e9
#define MOD 1000000007
//#define MOD 998244353
#define LINF (long long)4e18
#define jck 3.141592

using ll = long long;
using Pi = pair<int,int>;
using Pl = pair<ll,ll>;

int main(){
    int N; cin >> N;
    vector<ll> A(N);
    rep(i,N) cin >> A[i];
    vector<int> sum1(N+1);
    vector<int> sum2(N+1);
    repr(i,1,N){
        if(A[i] >= A[i-1]) sum1[i+1] = sum1[i] + 1;
        if(A[i] <= A[i-1]) sum2[i+1] = sum2[i] + 1;
    }
    int Q; cin >> Q;
    while(Q--){
        int l,r; cin >> l >> r;
        Pi ans;
        if(sum1[r+1]-sum1[l+1] == r-l) ans.first = 1;
        else ans.first = 0;
        if(sum2[r+1]-sum2[l+1] == r-l) ans.second = 1;
        else ans.second = 0;
        cout << ans.first << " " << ans.second << endl;
    }

}
0