結果
問題 | No.905 Sorted? |
ユーザー | season1618 |
提出日時 | 2019-10-11 22:54:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 804 bytes |
コンパイル時間 | 1,462 ms |
コンパイル使用メモリ | 166,520 KB |
実行使用メモリ | 10,528 KB |
最終ジャッジ日時 | 2024-05-04 02:42:55 |
合計ジャッジ時間 | 7,140 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,396 KB |
testcase_01 | AC | 1 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,944 KB |
testcase_05 | AC | 4 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 14 ms
6,944 KB |
testcase_08 | AC | 682 ms
6,940 KB |
testcase_09 | AC | 949 ms
6,944 KB |
testcase_10 | TLE | - |
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> using namespace std; #define rep(i,x,y) for(int i=x;i<y;i++) #define range(a) (a).begin(),(a).end() #define print(A,n) rep(i,0,n){cout<<(i ? " ":"")<<A[i];}cout<<endl; #define pprint(A,m,n) rep(j,0,m){print(A[j],n);} const long mod=1e9+7; const int size=1e5; const int INF=1e9; int d[size]; bool f(int l,int r){ if(l==r) return true; else if(l+1==r) return d[l]>=0; return f(l,(l+r)/2)&&f((l+r)/2,r); } bool g(int l,int r){ if(l==r) return true; else if(l+1==r) return d[l]<=0; return g(l,(l+r)/2)&&g((l+r)/2,r); } int main(){ int N;cin>>N; long a,b;cin>>a; rep(i,1,N){ cin>>b; if(a<b) d[i-1]=1; else if(a==b) d[i-1]=0; else d[i-1]=-1; a=b; } int Q;cin>>Q; int l,r; rep(i,0,Q){ cin>>l>>r; cout<<f(l,r)<<" "<<g(l,r)<<endl; }//print(d,N-1); }