結果

問題 No.905 Sorted?
ユーザー NagisaNagisa
提出日時 2019-10-11 23:03:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 930 bytes
コンパイル時間 1,849 ms
コンパイル使用メモリ 175,992 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2023-08-16 19:26:53
合計ジャッジ時間 4,405 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 142 ms
5,476 KB
testcase_16 AC 145 ms
5,452 KB
testcase_17 AC 145 ms
5,424 KB
testcase_18 AC 104 ms
5,324 KB
testcase_19 AC 2 ms
4,384 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 1 ms
4,380 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){
            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