日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Codeforces 1175E Minimal Segment Cover 倍增

發(fā)布時間:2025/4/14 编程问答 33 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Codeforces 1175E Minimal Segment Cover 倍增 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

Minimal Segment Cover

嗯嗯嗯。。 打倍增的時候兩個for寫反了查了半天bug。。。

我們先把沒用的線段去掉, 然后對每個線段都找到和它接觸的r最大的作為下一個, 然后打倍增就好了。

#include<bits/stdc++.h> #define LL long long #define LD long double #define ull unsigned long long #define fi first #define se second #define mk make_pair #define PLL pair<LL, LL> #define PLI pair<LL, int> #define PII pair<int, int> #define SZ(x) ((int)x.size()) #define ALL(x) (x).begin(), (x).end() #define fio ios::sync_with_stdio(false); cin.tie(0);using namespace std;const int N = 5e5 + 7; const int inf = 0x3f3f3f3f; const LL INF = 0x3f3f3f3f3f3f3f3f; const int mod = 998244353; const double eps = 1e-8; const double PI = acos(-1);template<class T, class S> inline void add(T& a, S b) {a += b; if(a >= mod) a -= mod;} template<class T, class S> inline void sub(T& a, S b) {a -= b; if(a < 0) a += mod;} template<class T, class S> inline bool chkmax(T& a, S b) {return a < b ? a = b, true : false;} template<class T, class S> inline bool chkmin(T& a, S b) {return a > b ? a = b, true : false;}int n, m, c[N]; int prefix[N]; int nex[N][20];struct Line {int l, r;bool operator < (const Line &rhs) const {if(l == rhs.l) return r > rhs.r;return l < rhs.l;} } a[N];int main() {scanf("%d%d", &n, &m);for(int i = 1; i <= n; i++) scanf("%d%d", &a[i].l, &a[i].r), a[i].r--;sort(a + 1, a + 1 + n);int nn = n; n = 1;for(int i = 2; i <= nn; i++)if(a[i].r > a[n].r) a[++n] = a[i];for(int i = 1; i <= n; i++) {c[a[i].l]++;c[a[i].r + 1]--;}if(!c[0]) prefix[0] = 1;for(int i = 1; i <= 500000; i++) {c[i] += c[i - 1];if(!c[i]) prefix[i] = 1;prefix[i] += prefix[i - 1];}for(int i = 1, j = 2; i <= n; i++) {j = max(i + 1, j);while(j <= n && a[j].l <= a[i].r + 1) j++;nex[i][0] = j - 1 == i ? 0 : j - 1;}for(int j = 1; j < 20; j++)for(int i = 1; i <= n; i++)nex[i][j] = nex[nex[i][j - 1]][j - 1];while(m--) {int x, y; scanf("%d%d", &x, &y);y--;int cnt = prefix[y];if(x) cnt -= prefix[x - 1];if(cnt) {puts("-1");} else {int p = lower_bound(a + 1, a + 1 + n, Line{x + 1, inf}) - a - 1;if(a[p].r >= y) {puts("1");} else {int ans = 0;for(int i = 19; i >= 0; i--) {if(nex[p][i] && a[nex[p][i]].r < y) {p = nex[p][i], ans += (1 << i);}}printf("%d\n", ans + 2);}}}return 0; }

?

轉(zhuǎn)載于:https://www.cnblogs.com/CJLHY/p/10982809.html

總結(jié)

以上是生活随笔為你收集整理的Codeforces 1175E Minimal Segment Cover 倍增的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。