結果
問題 | No.875 Range Mindex Query |
ユーザー | Alex Wice |
提出日時 | 2019-09-06 21:44:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 80 ms / 2,000 ms |
コード長 | 7,856 bytes |
コンパイル時間 | 3,249 ms |
コンパイル使用メモリ | 220,816 KB |
実行使用メモリ | 11,792 KB |
最終ジャッジ日時 | 2024-06-24 17:21:33 |
合計ジャッジ時間 | 5,000 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
11,648 KB |
testcase_01 | AC | 8 ms
11,520 KB |
testcase_02 | AC | 8 ms
11,520 KB |
testcase_03 | AC | 8 ms
11,648 KB |
testcase_04 | AC | 9 ms
11,520 KB |
testcase_05 | AC | 9 ms
11,648 KB |
testcase_06 | AC | 8 ms
11,648 KB |
testcase_07 | AC | 8 ms
11,520 KB |
testcase_08 | AC | 8 ms
11,648 KB |
testcase_09 | AC | 8 ms
11,520 KB |
testcase_10 | AC | 8 ms
11,520 KB |
testcase_11 | AC | 78 ms
11,776 KB |
testcase_12 | AC | 65 ms
11,752 KB |
testcase_13 | AC | 61 ms
11,776 KB |
testcase_14 | AC | 60 ms
11,776 KB |
testcase_15 | AC | 76 ms
11,776 KB |
testcase_16 | AC | 74 ms
11,776 KB |
testcase_17 | AC | 80 ms
11,792 KB |
testcase_18 | AC | 77 ms
11,776 KB |
ソースコード
#pragma region #pragma GCC optimize ("O3") #pragma GCC target ("sse4") #include <bits/stdc++.h> //#include <ext/pb_ds/tree_policy.hpp> //#include <ext/pb_ds/assoc_container.hpp> //#include <ext/rope> using namespace std; //using namespace __gnu_pbds; //using namespace __gnu_cxx; typedef long long ll; typedef long double ld; typedef complex<ld> cd; typedef pair<int, int> pi; typedef pair<ll,ll> pl; typedef pair<ld,ld> pd; typedef vector<int> vi; typedef vector<ld> vd; typedef vector<ll> vl; typedef vector<pi> vpi; typedef vector<pl> vpl; typedef vector<cd> vcd; //template <class T> using Tree = tree<T, null_type, less<T>, rb_tree_tag,tree_order_statistics_node_update>; #define FOR(i, a, b) for (int i = (a); i < (b); i++) #define F0R(i, a) for (int i = 0; i < (a); i++) #define FORd(i,a,b) for (int i = (b)-1; i >= (a); i--) #define F0Rd(i,a) for (int i = (a)-1; i >= 0; i--) #define trav(a, x) for (auto& a : x) #define mp make_pair #define pb push_back #define f first #define s second #define lb lower_bound #define ub upper_bound #define sz(x) (int)x.size() #define all(x) begin(x), end(x) #define rsz resize const int MOD = 1000000007; // 998244353 const ll INF = 1e18; const int MX = 200005; const ld PI = 4*atan((ld)1); template<class T> void chmin(T &a, T b) { a = min(a, b); } template<class T> void chmax(T &a, T b) { a = max(a, b); } namespace input { template<class T> void re(complex<T>& x); template<class T1, class T2> void re(pair<T1,T2>& p); template<class T> void re(vector<T>& a); template<class T, size_t SZ> void re(array<T,SZ>& a); template<class T> void re(T& x) { cin >> x; } void re(double& x) { string t; re(t); x = stod(t); } void re(ld& x) { string t; re(t); x = stold(t); } template<class Arg, class... Args> void re(Arg& first, Args&... rest) { re(first); re(rest...); } template<class T> void re(complex<T>& x) { T a,b; re(a,b); x = cd(a,b); } template<class T1, class T2> void re(pair<T1,T2>& p) { re(p.f,p.s); } template<class T> void re(vector<T>& a) { F0R(i,sz(a)) re(a[i]); } template<class T, size_t SZ> void re(array<T,SZ>& a) { F0R(i,SZ) re(a[i]); } } using namespace input; namespace output { template<class T1, class T2> void pr(const pair<T1,T2>& x); template<class T, size_t SZ> void pr(const array<T,SZ>& x); template<class T> void pr(const vector<T>& x); template<class T> void pr(const set<T>& x); template<class T1, class T2> void pr(const map<T1,T2>& x); template<class T> void pr(const T& x) { cout << x; } template<class Arg, class... Args> void pr(const Arg& first, const Args&... rest) { pr(first); pr(rest...); } template<class T1, class T2> void pr(const pair<T1,T2>& x) { pr("{",x.f,", ",x.s,"}"); } template<class T> void prContain(const T& x) { pr("{"); bool fst = 1; for (const auto& a: x) pr(!fst?", ":"",a), fst = 0; // const needed for vector<bool> pr("}"); } template<class T, size_t SZ> void pr(const array<T,SZ>& x) { prContain(x); } template<class T> void pr(const vector<T>& x) { prContain(x); } template<class T> void pr(const set<T>& x) { prContain(x); } template<class T1, class T2> void pr(const map<T1,T2>& x) { prContain(x); } void ps() { pr("\n"); } template<class Arg> void ps(const Arg& first) { pr(first); ps(); // no space at end of line } template<class Arg, class... Args> void ps(const Arg& first, const Args&... rest) { pr(first," "); ps(rest...); // print w/ spaces } } using namespace output; namespace io { void setIn(string s) { freopen(s.c_str(),"r",stdin); } void setOut(string s) { freopen(s.c_str(),"w",stdout); } void setIO(string s = "") { ios_base::sync_with_stdio(0); cin.tie(0); // fast I/O if (sz(s)) { setIn(s+".in"), setOut(s+".out"); } // for USACO } } using namespace io; template<class T> T invGeneral(T a, T b) { a %= b; if (a == 0) return b == 1 ? 0 : -1; T x = invGeneral(b,a); return x == -1 ? -1 : ((1-(ll)b*x)/a+b)%b; } template<class T> struct modular { T val; explicit operator T() const { return val; } modular() { val = 0; } modular(const ll& v) { val = (-MOD <= v && v <= MOD) ? v : v % MOD; if (val < 0) val += MOD; } // friend ostream& operator<<(ostream& os, const modular& a) { return os << a.val; } friend void pr(const modular& a) { pr(a.val); } friend void re(modular& a) { ll x; re(x); a = modular(x); } friend bool operator==(const modular& a, const modular& b) { return a.val == b.val; } friend bool operator!=(const modular& a, const modular& b) { return !(a == b); } friend bool operator<(const modular& a, const modular& b) { return a.val < b.val; } modular operator-() const { return modular(-val); } modular& operator+=(const modular& m) { if ((val += m.val) >= MOD) val -= MOD; return *this; } modular& operator-=(const modular& m) { if ((val -= m.val) < 0) val += MOD; return *this; } modular& operator*=(const modular& m) { val = (ll)val*m.val%MOD; return *this; } friend modular pow(modular a, ll p) { modular ans = 1; for (; p; p /= 2, a *= a) if (p&1) ans *= a; return ans; } friend modular inv(const modular& a) { auto i = invGeneral(a.val,MOD); assert(i != -1); return i; } // equivalent to return exp(b,MOD-2) if MOD is prime modular& operator/=(const modular& m) { return (*this) *= inv(m); } friend modular operator+(modular a, const modular& b) { return a += b; } friend modular operator-(modular a, const modular& b) { return a -= b; } friend modular operator*(modular a, const modular& b) { return a *= b; } friend modular operator/(modular a, const modular& b) { return a /= b; } }; typedef modular<int> mi; typedef pair<mi,mi> pmi; typedef vector<mi> vmi; typedef vector<pmi> vpmi; mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); #pragma endregion template<class T, int SZ> struct Seg { // SZ should be power of 2 T ID = id(); // comb(ID,b) must equal b T id() { return {MOD, MOD}; } T make(int x, int i) { return {x, i}; } T comb(T a, T b) { T ans = {MOD, MOD}; if (a.f < ans.f) { ans.f = a.f; ans.s = a.s; } if (b.f < ans.f) { ans.f = b.f; ans.s = b.s; } return ans; } // easily change this to min or max T seg[2*SZ]; Seg() { memset(seg,0,sizeof seg); } void build() { FORd(i,1,SZ) seg[i] = comb(seg[2*i],seg[2*i+1]); } void upd(int p, T value) { // set value at position p seg[p += SZ] = value; for (p /= 2; p; p /= 2) seg[p] = comb(seg[2*p],seg[2*p+1]); } T query(int l, int r) { // sum on interval [l, r] r ++; T lres = id(), rres = id(); // make sure non-commutative operations work for (l += SZ, r += SZ; l < r; l /= 2, r /= 2) { if (l&1) lres = comb(lres,seg[l++]); if (r&1) rres = comb(seg[--r],rres); } return comb(lres,rres); } }; typedef pi T; Seg<T, (1 << 19)> tree; int n, q; vi a; int main() { // setIO("t"); setIO(); re(n, q); a.rsz(n); re(a); F0R(i, n) tree.upd(i+1, tree.make(a[i], i+1)); F0R(i, q) { int t, L, R; re(t, L, R); if (t == 1) { // swap L and R // tree[i] = (x, i) pi xi = tree.query(L, L); pi yj = tree.query(R, R); tree.upd(L, tree.make(yj.f, xi.s)); tree.upd(R, tree.make(xi.f, yj.s)); } else { pi xi = tree.query(L, R); ps(xi.s); } } }