【HDOJ】3275 Light

news/2024/11/17 19:44:48/

这就是个简单线段树+延迟标记。因为对bool使用了~而不是!,wa了一下午找不到原因。

  1 /* 3275 */
  2 #include <iostream>
  3 #include <sstream>
  4 #include <string>
  5 #include <map>
  6 #include <queue>
  7 #include <set>
  8 #include <stack>
  9 #include <vector>
 10 #include <deque>
 11 #include <algorithm>
 12 #include <cstdio>
 13 #include <cmath>
 14 #include <ctime>
 15 #include <cstring>
 16 #include <climits>
 17 #include <cctype>
 18 #include <cassert>
 19 #include <functional>
 20 #include <iterator>
 21 #include <iomanip>
 22 using namespace std;
 23 //#pragma comment(linker,"/STACK:102400000,1024000")
 24 
 25 #define sti                set<int>
 26 #define stpii            set<pair<int, int> >
 27 #define mpii            map<int,int>
 28 #define vi                vector<int>
 29 #define pii                pair<int,int>
 30 #define vpii            vector<pair<int,int> >
 31 #define rep(i, a, n)     for (int i=a;i<n;++i)
 32 #define per(i, a, n)     for (int i=n-1;i>=a;--i)
 33 #define clr                clear
 34 #define pb                 push_back
 35 #define mp                 make_pair
 36 #define fir                first
 37 #define sec                second
 38 #define all(x)             (x).begin(),(x).end()
 39 #define SZ(x)             ((int)(x).size())
 40 #define lson            l, mid, rt<<1
 41 #define rson            mid+1, r, rt<<1|1
 42 
 43 typedef struct {
 44     bool f;
 45     int ln, tot;
 46 } node_t;
 47 
 48 const int maxn = 1e5+5;
 49 char s[maxn];
 50 node_t nd[maxn<<2];
 51 int L, R;
 52 
 53 inline void PushUp(int rt) {
 54     nd[rt].ln = nd[rt<<1].ln + nd[rt<<1|1].ln;
 55 }
 56 
 57 inline void PushDown(int rt) {
 58     if (nd[rt].f) {
 59         int lb = rt<<1;
 60         int rb = lb|1;
 61         nd[lb].f = !nd[lb].f;
 62         nd[lb].ln = nd[lb].tot - nd[lb].ln;
 63         nd[rb].f = !nd[rb].f;
 64         nd[rb].ln = nd[rb].tot - nd[rb].ln;
 65         nd[rt].f = false;
 66     }
 67 }
 68 
 69 void Build(int l, int r, int rt) {
 70     nd[rt].f = false;
 71     nd[rt].tot = r - l + 1;
 72     if (l == r) {
 73         nd[rt].ln = (s[l] == '1');
 74         return ;
 75     }
 76     
 77     int mid = (l + r) >> 1;
 78     Build(lson);
 79     Build(rson);
 80     
 81     PushUp(rt);
 82 }
 83 
 84 int Query(int l, int r, int rt) {
 85     if (l == r)
 86         return l;
 87     
 88     PushDown(rt);
 89     int mid = (l + r) >> 1;
 90     int ret;
 91     
 92     if (nd[rt<<1].ln == nd[rt<<1].tot)
 93         ret = Query(rson);
 94     else
 95         ret = Query(lson);
 96     PushUp(rt);
 97     
 98     return ret;
 99 }
100 
101 void Update(int l, int r, int rt) {
102     if (L<=l && R>=r) {
103         nd[rt].f = !nd[rt].f;
104         nd[rt].ln = nd[rt].tot - nd[rt].ln;
105         return ;
106     }
107     
108     PushDown(rt);
109     int mid = (l + r) >> 1;
110     
111     if (R <= mid) {
112         Update(lson);
113     } else if (L > mid) {
114         Update(rson);
115     } else {
116         Update(lson);
117         Update(rson);
118     }
119     
120     PushUp(rt);
121 }
122 
123 int main() {
124     ios::sync_with_stdio(false);
125     #ifndef ONLINE_JUDGE
126         freopen("data.in", "r", stdin);
127         freopen("data.out", "w", stdout);
128     #endif
129     
130     int n, l;
131     int ans, k;
132     
133     while (scanf("%d %d",&n,&l)!=EOF && (n||l)) {
134         scanf("%s", s+1);
135         Build(1, n, 1);
136         if (nd[1].tot == nd[1].ln) {
137             puts("0");
138             continue;
139         }
140         if (l == 0) {
141             puts("-1");
142             continue;
143         }
144         
145         ans = 0;
146         while (1) {
147             ++ans;
148             k = Query(1, n, 1);
149             L = k;
150             R = L + l - 1;
151             #ifndef ONLINE_JUDGE
152                 // printf("k = %d\n", k);
153             #endif
154             if (R > n) {
155                 ans = -1;
156                 break;
157             }
158             Update(1, n, 1);
159             if (nd[1].tot == nd[1].ln)
160                 break;
161         }
162         printf("%d\n", ans);
163     }
164     
165     #ifndef ONLINE_JUDGE
166         printf("time = %d.\n", (int)clock());
167     #endif
168     
169     return 0;
170 }

 

转载于:https://www.cnblogs.com/bombe1013/p/5080577.html


http://www.ppmy.cn/news/704077.html

相关文章

CSS基础(待完整)——css简介、css基础选择器、字体属性、css文本属性、css引入方式、Emmet语法、css复合选择器、元素显示器、背景、三大特性、盒子模型

文章目录 CSS简介CSS语法规范CSS代码风格样式格式书写样式大小写空格规范 CSS基础选择器CSS选择器的作用选择器分类标签选择器类选择器类选择器-多类名id选择器通配符选择器 字体属性字体系列字体大小字体粗细文字样式字体复合属性 CSS文本属性文本颜色对齐方式装饰文本文本缩进…

VUE小白学习-官方网站资料学习-2023年5月22日

VUE小白学习-官方网站资料学习-2023年5月22日 VUE干啥的&#xff1f;单文件组件&#xff1f;官方说&#xff0c;VUE前端万金油。 日期&#xff1a;2023年5月22日 VUE干啥的&#xff1f; 是一个前端框架&#xff0c;有自己的一套规则&#xff0c;方便前端开发。 单文件组件&am…

用wordpress建站效果怎么样?WordPress建站的8个主要优点

使用WordPress建站具有许多优势&#xff0c;其效果取决于您的需求、技能水平以及所选择的主题和插件。总体而言&#xff0c;WordPress是一个功能强大且灵活的内容管理系统&#xff0c;可用于创建各种类型的网站&#xff0c;从个人博客和企业网站到电子商务平台和社区论坛。 以下…

从0糖到0防腐剂,元气森林缘何偏向“虎山行”?

【潮汐商业评论/原创】 “一罐橘子汽水&#xff0c;半罐防腐剂”。过去&#xff0c;人们谈防腐剂“色变”&#xff0c;如今却习以为常&#xff0c;因为市面上少有0防腐剂的饮料可以选择。 所以&#xff0c;即便知道长期食用或者过量食用化学合成防腐剂对身体有害——比如饮料…

元气森林,只能小而美

在饮料行业里&#xff0c;元气森林一直在努力着。 就在前不久&#xff0c;元气森林对外宣布将推出可乐味的气泡水&#xff0c;同时在8月线上售卖并进入部分线下渠道。 2016年元气森林成立&#xff0c;距今也才6年的历史&#xff0c;但是旗下的品类却枝繁叶茂。而进军可乐赛道…

转:大数据的大价值:大数据五大成功案例深度解析

大数据的热潮并未有消褪迹象&#xff0c;相反&#xff0c;包括航空、金融、电商、政府、电信、电力甚至F1赛车等各个行业的企业都在纷纷掘金大数据。可以看出&#xff0c;在推动大数据企业应用方面&#xff0c;真正看到大数据潜在商业价值的企业比大数据技术厂商还要着急。例如…

网红品牌终将祛魅,而伊利、康师傅这些老司机们却仍然历久弥新

即便疫情凶猛&#xff0c;2020年一整年&#xff0c;新消费赛道依然活力四射&#xff0c;一批批新消费品牌强势崛起&#xff0c;迅猛增长。其中有的企业甚至成立不过三四年就已经敲响了上市的钟声&#xff0c;取得了老大哥们以前可能需要十年、十几年才达到的成就。 “过去一家…

澳优、伊利、君乐宝、贝因美等入局,羊奶能否迎来“牛市”?

&#xff08;图片来源于网络&#xff09; 文 | 易不二 来源 | 螳螂财经&#xff08;ID:TanglangFin&#xff09; 羊的一生&#xff0c;从出生就被安排的明明白白。 羊肉是美味的盘中餐&#xff0c;据说没有一只羊能完整地走出陕西、河南、内蒙等等地区&#xff1b;羊毛是保…