結果
問題 | No.905 Sorted? |
ユーザー | minami |
提出日時 | 2019-10-11 21:54:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 152 ms / 2,000 ms |
コード長 | 1,613 bytes |
コンパイル時間 | 1,684 ms |
コンパイル使用メモリ | 174,188 KB |
実行使用メモリ | 7,572 KB |
最終ジャッジ日時 | 2024-11-25 07:19:24 |
合計ジャッジ時間 | 4,239 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 3 ms
6,816 KB |
testcase_05 | AC | 3 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 4 ms
6,816 KB |
testcase_08 | AC | 137 ms
6,820 KB |
testcase_09 | AC | 89 ms
6,816 KB |
testcase_10 | AC | 121 ms
7,288 KB |
testcase_11 | AC | 128 ms
6,816 KB |
testcase_12 | AC | 152 ms
6,816 KB |
testcase_13 | AC | 137 ms
7,508 KB |
testcase_14 | AC | 139 ms
7,368 KB |
testcase_15 | AC | 148 ms
7,284 KB |
testcase_16 | AC | 147 ms
6,820 KB |
testcase_17 | AC | 149 ms
7,572 KB |
testcase_18 | AC | 108 ms
7,228 KB |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,816 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #ifdef _DEBUG #include "dump.hpp" #else #define dump(...) #endif #define int long long #define rep(i, a, b) for (int i = (a); i < (b); i++) #define rrep(i, a, b) for (int i = (b)-1; i >= (a); i--) #define all(c) begin(c), end(c) const int INF = sizeof(int) == sizeof(long long) ? 0x3f3f3f3f3f3f3f3fLL : 0x3f3f3f3f; const int MOD = 1e9 + 7; template <class T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <class T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; } signed main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; vector<int> A(N); rep(i, 0, N) cin >> A[i]; int Q; cin >> Q; vector<int> l(Q), r(Q); rep(i, 0, Q) cin >> l[i] >> r[i]; using P = pair<int, int>; vector<P> X, Y; X.emplace_back(-2, -1); Y.emplace_back(-2, -1); int x = 0; int y = 0; rep(i, 1, N) { if (A[i - 1] > A[i]) { X.emplace_back(x, i); x = i; } if (A[i - 1] < A[i]) { Y.emplace_back(y, i); y = i; } } X.emplace_back(x, N); Y.emplace_back(y, N); dump(X, Y); rep(q, 0, Q) { auto p = upper_bound(all(X), P(l[q], INF)); p--; dump(*p); cout << (p->first <= l[q] && r[q] < p->second) << " "; p = upper_bound(all(Y), P(l[q], INF)); p--; cout << (p->first <= l[q] && r[q] < p->second) << endl; } return 0; }