結果
問題 | No.905 Sorted? |
ユーザー | Nagisa |
提出日時 | 2019-10-11 23:07:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 958 bytes |
コンパイル時間 | 2,189 ms |
コンパイル使用メモリ | 178,900 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-04 03:02:12 |
合計ジャッジ時間 | 5,009 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 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 | 165 ms
5,632 KB |
testcase_16 | AC | 170 ms
5,632 KB |
testcase_17 | AC | 167 ms
5,632 KB |
testcase_18 | AC | 122 ms
5,504 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 |
ソースコード
#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]; F[0] = 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]; G[0] = 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; }