結果
問題 | No.875 Range Mindex Query |
ユーザー | outline |
提出日時 | 2020-03-26 20:53:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,707 bytes |
コンパイル時間 | 1,043 ms |
コンパイル使用メモリ | 115,340 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-10 13:18:44 |
合計ジャッジ時間 | 3,729 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 181 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | AC | 185 ms
6,940 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <complex> using namespace std; typedef long long ll; typedef uint64_t ull; typedef pair<int, int> P; typedef pair<int, double> Pid; typedef pair<double, int> Pdi; typedef pair<ll, int> Pl; typedef pair<ll, ll> Pll; typedef pair<int, pair<int, int>> PP; typedef pair<P, int> PPi; constexpr double PI = 3.1415926535897932; // acos(-1) constexpr double EPS = 1e-9; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) #define chadd(x, y) x = (x + y) % mod template<typename Monoid> struct SegmentTree{ using F = function<Monoid(Monoid, Monoid)>; int sz; vector<Monoid> seg; const F f; // モノイドに対して二項演算を行う関数オブジェクト const Monoid M1; SegmentTree(int n, const F f, const Monoid &M1) : f(f), M1(M1){ sz = 1; while(sz < n) sz <<= 1; seg.assign(2 * sz, M1); } void set(int k, const Monoid &x){ seg[k + sz] = x; } void build(){ for(int k = sz - 1; k > 0; --k){ seg[k] = f(seg[k << 1], seg[k << 1 | 1]); } } void update(int k, const Monoid &x){ k += sz; seg[k] = x; while(k >>= 1){ seg[k] = f(seg[k << 1], seg[k << 1 | 1]); } } Monoid query(int a, int b){ Monoid L = M1, R = M1; for(a += sz, b += sz; a < b; a >>= 1, b >>= 1){ if(a & 1) L = f(L, seg[a++]); if(b & 1) R = f(seg[--b], R); } return f(L, R); } Monoid operator[](const int &k) const{ return seg[k + sz]; } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n, q; cin >> n >> q; SegmentTree<P> seg(n, [](P a, P b){return min(a, b);}, P(INF, -1)); for(int i = 0; i < n; ++i){ int a; cin >> a; seg.set(i, P(a, i)); } seg.build(); for(int i = 0; i < q; ++i){ int query, l, r; cin >> query >> l >> r; if(query == 1){ int foo = seg[--l].first, bar = seg[--r].second; seg.update(l, P(bar, l)); seg.update(r, P(foo, r)); } else{ cout << seg.query(--l, r).second + 1 << endl; } } }