結果

問題 No.905 Sorted?
ユーザー NagisaNagisa
提出日時 2019-10-11 23:15:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 955 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 178,812 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-05-04 03:09:27
合計ジャッジ時間 5,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 144 ms
5,376 KB
testcase_09 AC 100 ms
5,376 KB
testcase_10 AC 131 ms
5,376 KB
testcase_11 AC 139 ms
5,376 KB
testcase_12 AC 171 ms
5,376 KB
testcase_13 AC 150 ms
5,504 KB
testcase_14 AC 149 ms
5,632 KB
testcase_15 AC 181 ms
5,504 KB
testcase_16 AC 167 ms
5,632 KB
testcase_17 AC 168 ms
5,632 KB
testcase_18 AC 120 ms
5,632 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i = 0; i < (int)(n); ++i)
#define ALL(a)  (a).begin(),(a).end()
typedef long long ll;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin >> N;
    vector<ll> A(N+1,0);
    REP(i,N){
        cin >> A[i];}
    vector<ll> F(N+1,0), G(N+1,0);
    int f = 0;
    ll t = A[0];
    REP(i,N-1){
        if(A[i+1] >= t){
            t = A[i+1];
            F[i+1] = f;
        }else{
            t = A[i+1];
            f++;
            F[i+1] = f;
        }
    }
    f = 0;
    t = A[0];
    REP(i,N-1){
        if(A[i+1] <= t){
            t = A[i+1];
            G[i+1] = f;
        }else{
            t = A[i+1];
            f++;
            G[i+1] = f;
        }
    }

    int q, l, r;
    cin >> q;
    REP(i,q){
        cin >> l >> r;
        cout << (F[l]==F[r]) << " " << (G[l]==G[r]) << endl;
    }
    return 0;
}
0