結果

問題 No.905 Sorted?
ユーザー iqueue02iqueue02
提出日時 2019-11-19 22:14:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 1,638 ms
コンパイル使用メモリ 167,100 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-15 02:20:05
合計ジャッジ時間 5,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 205 ms
6,940 KB
testcase_09 AC 125 ms
6,944 KB
testcase_10 AC 196 ms
6,940 KB
testcase_11 AC 185 ms
6,940 KB
testcase_12 AC 215 ms
6,940 KB
testcase_13 AC 228 ms
6,944 KB
testcase_14 AC 238 ms
6,944 KB
testcase_15 AC 213 ms
6,940 KB
testcase_16 AC 230 ms
6,940 KB
testcase_17 AC 232 ms
6,940 KB
testcase_18 AC 168 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef pair<int,int> P;

int main(){
  int n;
  cin >> n;
  vector<ll> a(n);
  rep(i,n) cin >> a[i];
  vector<int> inc(n,0), dec(n,0);
  rep(i,n-1) {
    if (a[i] <= a[i+1]) inc[i] = 1;
    if (a[i] >= a[i+1]) dec[i] = 1;
  }
  rep(i,n-1) inc[i+1] += inc[i], dec[i+1] += dec[i];
  int q;
  cin >> q;
  while (q--) {
    int l, r;
    cin >> l >> r;
    l--; r--;
    int res1 = 0, res2 = 0;
    if (r - l == inc[r] - inc[l]) res1 = 1;
    if (r - l == dec[r] - dec[l]) res2 = 1;
    printf("%d %d\n", res1, res2);
  }
  return 0;
}
0