結果
問題 | No.2650 [Cherry 6th Tune *] セイジャク |
ユーザー | arad |
提出日時 | 2024-02-23 21:57:41 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,639 bytes |
コンパイル時間 | 4,857 ms |
コンパイル使用メモリ | 326,364 KB |
実行使用メモリ | 28,048 KB |
最終ジャッジ日時 | 2024-09-29 06:31:10 |
合計ジャッジ時間 | 18,870 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | AC | 34 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
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 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 401 ms
27,668 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 511 ms
27,796 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; using VD = vector<double>; using VVD = vector<VD>; using VS = vector<string>; using P = pair<ll,ll>; using VP = vector<P>; #define rep(i, n) for (ll i = 0; i < ll(n); i++) #define out(x) cout << x << endl #define dout(x) cout << fixed << setprecision(10) << x << endl #define all(a) (a).begin(),(a).end() #define rall(a) (a).rbegin(),(a).rend() #define sz(x) (int)(x.size()) #define re0 return 0 #define pcnt __builtin_popcountll template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } constexpr int inf = 1e9; constexpr ll INF = 1e18; //using mint = modint1000000007; //using mint = modint998244353; int di[4] = {1,0,-1,0}; int dj[4] = {0,1,0,-1}; // Coodinate Compression // https://youtu.be/fR3W5IcBGLQ?t=8550 template<typename T=int> struct CC { bool initialized; vector<T> xs; CC(): initialized(false) {} void add(T x) { xs.push_back(x);} void init() { sort(xs.begin(), xs.end()); xs.erase(unique(xs.begin(),xs.end()),xs.end()); initialized = true; } int operator()(T x) { if (!initialized) init(); return upper_bound(xs.begin(), xs.end(), x) - xs.begin() - 1; } T operator[](int i) { if (!initialized) init(); return xs[i]; } int size() { if (!initialized) init(); return xs.size(); } }; void solve(){ ll n,a; cin >> n >> a; CC cc; VL x(n); rep(i,n){ cin >> x[i]; cc.add(x[i]); } ll t; cin >> t; VL l(t),r(t); rep(i,t){ cin >> l[i] >> r[i]; cc.add(l[i]); cc.add(r[i]); } cc.init(); map<ll,ll> mp; rep(i,n){ mp[cc(x[i])] = i; x[i] = cc(x[i]); } rep(i,t){ l[i] = cc(l[i]); r[i] = cc(r[i]); } ll m = sz(cc.xs); set<ll> st; rep(i,m+1) st.insert(i); VL ans(n,-1); for(ll i = t-1;i >= 0;i--){ ll now = l[i]; while(now <= r[i]){ if(mp.count(now)){ ans[mp[now]] = i+1; } st.erase(now); now++; if(st.count(now)) continue; else { auto itr = st.lower_bound(now); now = *itr; } } } rep(i,n) out(ans[i]); } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); int t = 1; rep(ti,t) solve(); }