結果
問題 | No.905 Sorted? |
ユーザー | ugis_prog |
提出日時 | 2019-10-11 22:04:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,869 bytes |
コンパイル時間 | 1,869 ms |
コンパイル使用メモリ | 173,792 KB |
実行使用メモリ | 9,984 KB |
最終ジャッジ日時 | 2024-05-04 01:41:37 |
合計ジャッジ時間 | 4,043 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 113 ms
6,144 KB |
testcase_10 | WA | - |
testcase_11 | AC | 187 ms
8,576 KB |
testcase_12 | AC | 209 ms
7,936 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 213 ms
9,856 KB |
testcase_16 | AC | 207 ms
9,984 KB |
testcase_17 | AC | 222 ms
9,856 KB |
testcase_18 | AC | 158 ms
9,984 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,N) for(int (i)=0;(i) < (N); (i)++) #define all(V) V.begin(), V.end() using i64 = int_fast64_t; using P = pair<i64,i64>; class UnionFind{ private: using uint = std::uint_fast64_t; std::vector<uint> par; std::vector<uint> sizes; uint find(uint x){ if(x == par[x]) return x; return par[x] = find(par[x]); } public: UnionFind() = delete; UnionFind(uint size) : par(size), sizes(size, 1){ for(uint i = 0; i < size; ++i) par[i] = i; } bool unite(uint x, uint y){ x = find(x); y = find(y); if(x == y) return false; if(sizes[x] < sizes[y]) std::swap(x, y); if(sizes[x] == sizes[y] && x > y) std::swap(x, y); sizes[x] += sizes[y]; sizes[y] = 0; par[y] = x; return true; } bool isSame(uint x, uint y ){ return find(par[x]) == find(par[y]);} uint getSize(uint x){return find(sizes[par[x]]);} }; int main(){ int N; cin >> N; vector<int> A(N); rep(i,N) cin >> A[i]; UnionFind up(2*N), down(2*N); int left = 0, right = 0; int last = A[0]; while(right < N){ while(last <= A[right] && right < N) { up.unite(N+left, right); last = A[right]; right++; } if(right < N) last = A[right]; left = right; } left = 0, right = 0; last = A[0]; while(right < N){ while(last >= A[right] && right < N) { down.unite(N+left, right); last = A[right]; right++; } if(right < N) last = A[right]; left = right; } int Q, l , r; cin >> Q; rep(i, Q){ cin >> l >> r; cout << (up.isSame(l, r) ? 1 : 0) << " "; cout << (down.isSame(l, r) ? 1 : 0) << endl; } }