Codeforces Round #337 (Div. 2)
#include <bits/stdc++.h>
using namespace std; typedef long long ll;
const int N = 1e5 + 5;
const int INF = 0x3f3f3f3f; int main(void) {
int n; scanf ("%d", &n);
int ans = n / 4;
if (n % 4 == 0) {
ans--;
}
if (n % 2 != 0) ans = 0;
printf ("%d\n", ans); return 0;
}
构造+贪心 B - Vika and Squares
题意:给你一堆油漆,然后选择一个油漆开始涂,一个油漆一个油漆的涂,就是涂过4后面涂5,涂过n后面可以涂1,一直涂到不能继续就停止,问最多能涂多少块
有段时间了,都不知道当时自己怎么做出来的了。
#include <bits/stdc++.h>
using namespace std; typedef long long ll;
const int N = 2e5 + 5;
const int INF = 0x3f3f3f3f;
int a[N]; int main(void) {
int n; scanf ("%d", &n);
int mn = INF;
for (int i=1; i<=n; ++i) {
scanf ("%d", &a[i]);
if (a[i] < mn) mn = a[i];
}
vector<int> pos;
for (int i=1; i<=n; ++i) {
if (a[i] == mn) {
pos.push_back (i);
}
}
int mx_len = 0, sz = pos.size ();
for (int i=0; i<sz-1; ++i) {
mx_len = max (mx_len, pos[i+1] - pos[i] - 1);
}
mx_len = max (mx_len, n - pos[sz-1] + pos[0] - 1);
printf ("%I64d\n", 1ll * n * mn + mx_len); return 0;
}
题意:(1 << k)边长的矩形,第i行与第j行乘积和为0的方案
分析:因为每次都乘2,构造方法:比如++ 变成++ ++那么对应的有-- ++; 再如-++- 变成 -++- -++- 那么对应的有+--+ +--+
#include <bits/stdc++.h> int a[522][522]; int main(void) {
int k; scanf ("%d", &k);
int tot = 1;
int len = 1 << k;
a[1][1] = 1;
for (int j=1; j<len; j<<=1) {
int t = tot;
for (int l=1; l<=t; ++l) {
for (int m=1; m<=j; ++m) {
a[l][m+j] = a[l][m];
}
tot++;
for (int m=1; m<=2*j; ++m) {
if (m <= j) a[tot][m] = 1 - a[l][m];
else a[tot][m] = a[l][m];
}
}
}
for (int i=1; i<=len; ++i) {
for (int j=1; j<=len; ++j) {
if (a[i][j] == 1) printf ("+");
else printf ("*");
}
puts ("");
} return 0;
}
离线+扫描线+线段树 D - Vika and Segments
题意:给一些横线或者竖线,问一共有多少个点(重复的算一次)
分析:可以转换成求矩形面积的问题,把矩形左下角的点x1--, y1--构成一个宽度为1的矩形,点的个数:x2 - x1,那么面积就是点的个数,离散后加成端更新就可以了。
#include <bits/stdc++.h> typedef long long ll;
const int N = 1e5 + 5;
struct Seg {
int l, r, h, c;
Seg() {}
Seg(int l, int r, int h, int c) : l (l), r (r), h (h), c (c) {}
bool operator < (const Seg &a) const {
return h < a.h || (h == a.h && l < a.l);
}
};
Seg seg[N<<1];
int X[N<<1]; #define lson l, mid, o << 1
#define rson mid, r, o << 1 | 1
struct Segment_Tree {
int sum[N<<3], cover[N<<3];
void push_up(int l, int r, int o) {
if (cover[o]) {
sum[o] = X[r] - X[l];
}
else if (l + 1 == r) {
sum[o] = 0;
}
else {
sum[o] = sum[o<<1] + sum[o<<1|1];
}
}
void build(int l, int r, int o) {
sum[o] = cover[o] = 0;
if (l + 1 == r) return ;
int mid = l + r >> 1;
build (lson); build (rson);
}
void updata(int ql, int qr, int c, int l, int r, int o) {
if (ql <= l && r <= qr) {
cover[o] += c;
push_up (l, r, o);
return ;
}
else if (l + 1 == r) return ;
int mid = l + r >> 1;
if (ql <= mid) updata (ql, qr, c, lson);
if (qr > mid) updata (ql, qr, c, rson);
push_up (l, r, o);
}
}st; int n, totx, tots; ll run(void) {
ll ret = 0;
std::sort (seg, seg+tots);
std::sort (X, X+totx);
totx = std::unique (X, X+totx) - X;
st.build (0, totx - 1, 1);
for (int i=0; i<tots-1; ++i) {
int l = std::lower_bound (X, X+totx, seg[i].l) - X;
int r = std::lower_bound (X, X+totx, seg[i].r) - X;
st.updata (l, r, seg[i].c, 0, totx - 1, 1);
ret += 1ll * st.sum[1] * (seg[i+1].h - seg[i].h);
}
return ret;
} int main(void) {
scanf ("%d", &n);
int x1, y1, x2, y2;
totx = tots = 0;
for (int i=0; i<n; ++i) {
scanf ("%d%d%d%d", &x1, &y1, &x2, &y2);
if (x1 > x2 || y1 > y2) {
std::swap (x1, x2); std::swap (y1, y2);
}
x1--; y1--;
seg[tots++] = Seg (x1, x2, y1, 1);
seg[tots++] = Seg (x1, x2, y2, -1);
X[totx++] = x1; X[totx++] = x2;
}
printf ("%I64d\n", run ()); return 0;
}
Codeforces Round #337 (Div. 2)的更多相关文章
- Codeforces Round #337 (Div. 2) D. Vika and Segments 线段树扫描线
D. Vika and Segments 题目连接: http://www.codeforces.com/contest/610/problem/D Description Vika has an i ...
- Codeforces Round #337 (Div. 2) C. Harmony Analysis 构造
C. Harmony Analysis 题目连接: http://www.codeforces.com/contest/610/problem/C Description The semester i ...
- Codeforces Round #337 (Div. 2) B. Vika and Squares 贪心
B. Vika and Squares 题目连接: http://www.codeforces.com/contest/610/problem/B Description Vika has n jar ...
- Codeforces Round #337 (Div. 2) A. Pasha and Stick 数学
A. Pasha and Stick 题目连接: http://www.codeforces.com/contest/610/problem/A Description Pasha has a woo ...
- Codeforces Round #337 (Div. 2) D. Vika and Segments (线段树+扫描线+离散化)
题目链接:http://codeforces.com/contest/610/problem/D 就是给你宽度为1的n个线段,然你求总共有多少单位的长度. 相当于用线段树求面积并,只不过宽为1,注意y ...
- Codeforces Round #337 (Div. 2) C. Harmony Analysis
题目链接:http://codeforces.com/contest/610/problem/C 解题思路: 将后一个矩阵拆分为四个前一状态矩阵,其中三个与前一状态相同,剩下一个直接取反就行.还有很多 ...
- Codeforces Round #337 (Div. 2) D. Vika and Segments 线段树 矩阵面积并
D. Vika and Segments Vika has an infinite sheet of squared paper. Initially all squares are whit ...
- Codeforces Round #337 (Div. 2) C. Harmony Analysis 数学
C. Harmony Analysis The semester is already ending, so Danil made an effort and decided to visit a ...
- Codeforces Round #337 (Div. 2) B. Vika and Squares 水题
B. Vika and Squares Vika has n jars with paints of distinct colors. All the jars are numbered from ...
随机推荐
- 9.12/ css3拓展、js基础语法、程序基本知识、数据类型、运算符表达方式、语句知识点
css3拓展: <display:none> 将某个元素隐藏 <visibility:hidden> 也是将某个元素隐藏 <display:block&g ...
- java课后作业5
[问题]随机生成10个数,填充一个数组,然后用消息框显示数组内容,接着计算数组元素的和,将结果也显示在消息框中. 设计思路: 1.申请一个长度为10的数组 2.计算机随机生成10个数,并赋给数组 3. ...
- Excel去重
在excel2007中,数据——>数据工具——>删除重复项也可使用高级筛选:数据——>排序和筛选中的高级——>弹出高级筛选对话框,设置列表区域和条件区域,并勾选“选择不重复记录 ...
- 晨跑(bzoj 1877)
Description Elaxia最近迷恋上了空手道,他为自己设定了一套健身计划,比如俯卧撑.仰卧起坐等 等,不过到目前为止,他坚持下来的只有晨跑. 现在给出一张学校附近的地图,这张地图中包含N个十 ...
- python基础——获取对象信息
python基础——获取对象信息 当我们拿到一个对象的引用时,如何知道这个对象是什么类型.有哪些方法呢? 使用type() 首先,我们来判断对象类型,使用type()函数: 基本类型都可以用type( ...
- python基础——面向对象编程
python基础——面向对象编程 面向对象编程——Object Oriented Programming,简称OOP,是一种程序设计思想.OOP把对象作为程序的基本单元,一个对象包含了数据和操作数据的 ...
- 四、优化及调试--网站优化--Yahoo军规上
什么是Yahoo军规?即如何提高网站速度的知识. 具体如下: 1.尽量减少HTTP请求个数——须权衡 什么是http请求:从客户端到服务器端的请求消息.包括消息首行中,对资源的请求方法,资源的标识符及 ...
- PortSentry是入侵检测工具中配置最简单、效果最直接的工具之一
https://sourceforge.net/projects/sentrytools/ [root@localhost ~]# tar -xzvf portsentry-1.2.tar.gz [r ...
- GBDT原理实例演示 1
考虑一个简单的例子来演示GBDT算法原理 下面是一个二分类问题,1表示可以考虑的相亲对象,0表示不考虑的相亲对象 特征维度有3个维度,分别对象 身高,金钱,颜值 cat dating.txt ...
- 微信公众平台中的openid是什么?
在微信公众平台开发中,会遇到一个叫openid的东东,让我们这些不懂开发的摸不着头脑,开始我也是一头雾水,经过多方面查资料,终于明白是怎么回事了! openid是公众号的普通用户的一个唯一的标识,只针 ...