結果

問題 No.905 Sorted?
ユーザー finefine
提出日時 2019-10-11 21:36:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 1,675 ms
コンパイル使用メモリ 169,748 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 01:10:19
合計ジャッジ時間 3,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 32 ms
5,376 KB
testcase_09 AC 20 ms
5,376 KB
testcase_10 AC 34 ms
5,376 KB
testcase_11 AC 30 ms
5,376 KB
testcase_12 AC 34 ms
5,376 KB
testcase_13 AC 39 ms
5,376 KB
testcase_14 AC 40 ms
5,376 KB
testcase_15 AC 34 ms
5,376 KB
testcase_16 AC 38 ms
5,376 KB
testcase_17 AC 37 ms
5,376 KB
testcase_18 AC 29 ms
5,376 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 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int n;
    cin >> n;
    vector<ll> a(n);
    vector<int> b(n, 0), c(n, 0);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }

    for (int i = 1; i < n; i++) {
        b[i] = (a[i - 1] <= a[i]);
        b[i] += b[i - 1];

        c[i] = (a[i - 1] >= a[i]);
        c[i] += c[i - 1];      
    }

    int q;
    cin >> q;
    for (int i = 0; i < q; i++) {
        int l, r;
        cin >> l >> r;
        cout << (b[r] - b[l] == r - l) << " " << (c[r] - c[l] == r - l) << "\n";
    }
    return 0;
}
0