結果
問題 | No.905 Sorted? |
ユーザー | m1025o1184t |
提出日時 | 2019-10-17 03:12:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 772 bytes |
コンパイル時間 | 2,086 ms |
コンパイル使用メモリ | 178,620 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-06-23 13:08:36 |
合計ジャッジ時間 | 6,276 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 13 ms
6,944 KB |
testcase_06 | AC | 5 ms
6,944 KB |
testcase_07 | AC | 60 ms
6,944 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);++i) using namespace std; typedef long long ll; typedef pair<int, int> P; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector<ll> a(n); rep(i, n) cin >> a[i]; int q; cin >> q; vector<P> l(q); vector<P> query(q); rep(i, q) cin >> l[i].first >> l[i].second; rep(i, q) { vector<ll> res; for (int j = l[i].first; j <= l[i].second; ++j) { res.push_back(a[j]); } vector<ll> sol=res; sort(sol.begin(), sol.end()); if (sol == res) query[i].first = 1; else query[i].first = 0; reverse(sol.begin(), sol.end()); if (sol == res) query[i].second = 1; else query[i].second = 0; } rep(i, q) cout << query[i].first << ' ' << query[i].second << endl; return 0; }