atcoder ABC233
B
题意
给一个字符串, 可以把第一个字母移到最后, 也可以把最后一个字母放第一个, 问字典序最大最小的字符串。
题解
把第一个放最后一个, 相当于把最后一个放第一个执行n-1次, 那么我们不妨只进行第一步操作, 把所有的结果都算出来, 排序即可; 注:提取string的子串方法:a.substr(i, j); 从第i位开始, 长度为j的字符串(开头是0);
D
题意
构造一个n的全排列, 使\(a_i\)在\(b_i\)前面;
题解
非常简单, 建边判环即可, 判环和记录答案都可以用topsort, 不过统计答案的时候要用堆优化, 应该可以写到一个函数里面
代码
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = 0x3f3f3f3f;
const int N = 2e5 + 10;
const int M = 5e3 + 10;
const int eps = 1e-6;
template < typename T > inline void read(T &x) {
x = 0; T ff = 1, ch = getchar();
while (!isdigit(ch)) {
if (ch == '-') ff = -1;
ch = getchar();
}
while (isdigit(ch)) {
x = (x << 1) + (x << 3) + (ch ^ 48);
ch = getchar();
}
x *= ff;
}
int n, m, c[N], du[N], vi[N];
map < int, int > p[N];
vector < int > v[N], a;
inline bool topsort() {
queue < int > q;
for (int i = 1; i <= n; ++i)
if (c[i] == 0) q.push(i);
while (!q.empty()) {
int x = q.front();
q.pop();
for (int i = 0; i < v[x].size(); ++i) {
int y = v[x][i];
--c[y];
if (c[y] == 0) q.push(y);
}
}
for (int i = 1; i <= n; ++i)
if (c[i]) return false;
return true;
}
inline void solve() {
priority_queue < int > q;
for (int i = 1; i <= n; ++i)
if (du[i] == 0) q.push(-i);
while (!q.empty()) {
int x = -q.top();
q.pop();
a.push_back(x);
for (int i = 0; i < v[x].size(); ++i) {
int y = v[x][i];
--du[y];
if (du[y] == 0) q.push(-y);
}
}
for (int i = 0; i < n; ++i) printf("%d ", a[i]);
}
int main() {
read(n), read(m);
for (int i = 1; i <= m; ++i) {
int x, y;
read(x), read(y);
if (p[x][y]) continue;
p[x][y] = true;
v[x].push_back(y);
++du[y];
++c[y];
}
if (!topsort()) puts("-1");
else solve();
return 0;
}
E
题意
题目不是很好理解, 有个x*y的网格, 要放入三个面积不小于a, b, c且边长都为整数的矩形, 判断是否成立。
题解
当有两个矩形的时候, 存在一条线, 把两个矩形分开。 当三个矩形的时候, 存在一条线, 分成一边一个矩形,一边两个矩形。 那我们就枚举这个矩形,在枚举x或y,使这条边充分利用, 算出len=\(\lceil\frac{S}{x}\rceil\), 或 len=\(\lceil\frac{S}{y}\rceil\), 从而把边长减去len, 转换成两个矩形的问题, 同上
代码
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = 0x3f3f3f3f;
const int N = 2e5 + 10;
const int M = 5e3 + 10;
const int eps = 1e-6;
template < typename T > inline void read(T &x) {
x = 0; T ff = 1, ch = getchar();
while (!isdigit(ch)) {
if (ch == '-') ff = -1;
ch = getchar();
}
while (isdigit(ch)) {
x = (x << 1) + (x << 3) + (ch ^ 48);
ch = getchar();
}
x *= ff;
}
ll n, m, a, b, c;
inline bool solve2(ll x, ll y, ll u, ll v) {
for (int i = 0; i < 2; ++i) {
ll len = (u + x - 1) / x;
if (len < y && x * (y - len) >= v) return true;
swap(x, y);
}
return false;
}
inline bool solve3(ll x, ll y, ll u, ll v, ll w) {
for (int i = 0; i < 2; ++i) {
for (int j = 0; j < 3; ++j) {
ll len = (u + x - 1) / x;
if (len < y && solve2(x, y - len, v, w)) return true;
swap(u, v);
swap(v, w);
}
swap(x, y);
}
return false;
}
int main() {
read(n), read(m), read(a), read(b), read(c);
puts(solve3(n, m, a, b, c) ? "Yes" : "No");
return 0;
}
F
在看这道题之前, 我们先引入一道题
题目
我们再引入一个题解
题解
题解是链上的做法, 引申到树上即可.(吐槽一波, csp我竟然看错题了)
上题
题目的意思是, 有一个长度为n的括号序列, 有两个操作, 一是交换l, r的括号, 二是求l到r之间是不是完美匹配. 有了上面的铺垫, 我们很显然知道, 一段区间是合法的, 必须满足, a[l - 1] = a[r], 且a[l ~ r - 1] >= a[l - 1] (a[r]), 那我们交换两个不同的括号有什么影响呢, 假如是左边的左括号和右边的右括号交换, 那么a[l ~ r - 1], 全部减去2, 反之同理, 看到这个, 那么我们就知道要用数据结构来维护这个a数组了, 线段树显然可以, 当然需要懒标记.
代码
#include <bits/stdc++.h>
using namespace std;
//typedef long long ll;
const int INF = 0x3f3f3f3f;
const int N = 2e5 + 10;
const int M = 1e6 + 10;
//const int mod = 1e9 + 7;
//const double eps = 1e-6;
template < typename T > inline void read(T &x) {
x = 0; T ff = 1, ch = getchar();
while (!isdigit(ch)) {
if (ch == '-') ff = -1;
ch = getchar();
}
while (isdigit(ch)) {
x = (x << 1) + (x << 3) + (ch ^ 48);
ch = getchar();
}
x *= ff;
}
char ch[N];
int n, m, a[N];
struct tree {
int l, r;
int dat, lazy;
}t[N << 2];
inline void build(int x, int l, int r) {
t[x].l = l, t[x].r = r;
if (l == r) {
t[x].dat = a[l];
return;
}
int mid = l + r >> 1;
build(x << 1, l, mid);
build(x << 1 | 1, mid + 1, r);
t[x].dat = min(t[x << 1].dat, t[x << 1 | 1].dat);
}
inline void push_down(int x) {
if (t[x].lazy != 0) {
t[x << 1].lazy += t[x].lazy;
t[x << 1 | 1].lazy += t[x].lazy;
t[x << 1].dat += t[x].lazy;
t[x << 1 | 1].dat += t[x].lazy;
// t[x].dat = min(t[x << 1].dat, t[x << 1 | 1].dat);
t[x].lazy = 0;
}
}
inline void change(int x, int L, int R, int c) {
int l = t[x].l, r = t[x].r;
if (L <= l && R >= r) {
t[x].dat += c;
t[x].lazy += c;
return;
}
push_down(x);
int mid = l + r >> 1;
if (mid >= L) change(x << 1, L, R, c);
if (mid < R) change(x << 1 | 1, L, R, c);
t[x].dat = min(t[x << 1].dat, t[x << 1 | 1].dat);
}
inline int query(int x, int L, int R) {
int l = t[x].l, r = t[x].r;
if (l >= L && r <= R) return t[x].dat;
push_down(x);
int ans = INF;
int mid = l + r >> 1;
if (mid >= L) ans = min(ans, query(x << 1, L, R));
if (mid < R) ans = min(ans, query(x << 1 | 1, L, R));
// t[x].dat = (t[x << 1].dat, t[x << 1 | 1].dat);
return ans;
}
int main() {
read(n); read(m);
scanf("%s", ch + 1);
for (int i = 1; i <= n; ++i) {
if (ch[i] == '(') a[i] = a[i - 1] + 1;
else a[i] = a[i - 1] - 1;
}
build(1, 0, n);
for (int i = 1; i <= m; ++i) {
int op, l, r;
read(op), read(l), read(r);
if (op == 1) {
if (ch[l] == ch[r]) continue;
if (ch[l] == '(') change(1, l, r - 1, -2);
else change(1, l, r - 1, 2);
swap(ch[l], ch[r]);
} else {
int x, y, z;
x = query(1, l - 1, l - 1);
y = query(1, l, r);
z = query(1, r, r);
if (x == y && y == z) puts("Yes");
else puts("No");
}
}
return 0;
}
atcoder ABC233的更多相关文章
- AtCoder Regular Contest 061
AtCoder Regular Contest 061 C.Many Formulas 题意 给长度不超过\(10\)且由\(0\)到\(9\)数字组成的串S. 可以在两数字间放\(+\)号. 求所有 ...
- AtCoder Grand Contest 001 C Shorten Diameter 树的直径知识
链接:http://agc001.contest.atcoder.jp/tasks/agc001_c 题解(官方): We use the following well-known fact abou ...
- AtCoder Regular Contest 082
我都出了F了……结果并没有出E……atcoder让我差4分上橙是啥意思啊…… C - Together 题意:把每个数加1或减1或不变求最大众数. #include<cstdio> #in ...
- AtCoder Regular Contest 069 D
D - Menagerie Time limit : 2sec / Memory limit : 256MB Score : 500 points Problem Statement Snuke, w ...
- AtCoder Regular Contest 076
在湖蓝跟衡水大佬们打的第二场atcoder,不知不觉一星期都过去了. 任意门 C - Reconciled? 题意:n只猫,m只狗排队,猫与猫之间,狗与狗之间是不同的,同种动物不能相邻排,问有多少种方 ...
- AtCoder Grand Contest 016
在雅礼和衡水的dalao们打了一场atcoder 然而窝好菜啊…… A - Shrinking 题意:定义一次操作为将长度为n的字符串变成长度n-1的字符串,且变化后第i个字母为变化前第i 或 i+1 ...
- AtCoder Beginner Contest 069【A,水,B,水,C,数学,D,暴力】
A - K-City Time limit : 2sec / Memory limit : 256MB Score : 100 points Problem Statement In K-city, ...
- AtCoder Beginner Contest 075 D - Axis-Parallel Rectangle
https://beta.atcoder.jp/contests/abc075/tasks/abc075_d 题意: 给出坐标平面上n个点的坐标,要求找到一个面积最小的矩形使得这个矩形的边界加上内部的 ...
- AtCoder Beginner Contest 073
D - joisino's travel Time Limit: 2 sec / Memory Limit: 256 MB Score : 400400 points Problem Statemen ...
随机推荐
- Go学习【02】:理解Gin,搭一个web demo
Go Gin 框架 说Gin是一个框架,不如说Gin是一个类库或者工具库,其包含了可以组成框架的组件.这样会更好理解一点. 举个 下面的示例代码在这:github 利用Gin组成最基本的框架.说到框架 ...
- linux mint17.3+vmware 12.1.1 流畅安装运行OSX EI capitan
在linux mint17.3的vmware虚拟机中安装mac osx ei capitan系统 出于对苹果操作系统的好奇与喜爱,分别在宿主机操作系统为windows 7和linux mint17.3 ...
- 鸿蒙内核源码分析(内存管理篇) | 虚拟内存全景图是怎样的 | 百篇博客分析OpenHarmony源码 | v12.04
百篇博客系列篇.本篇为: v12.xx 鸿蒙内核源码分析(内存管理篇) | 虚拟内存全景图是怎样的 | 51.c.h .o 内存管理相关篇为: v11.xx 鸿蒙内核源码分析(内存分配篇) | 内存有 ...
- P3980-[NOI2008]志愿者招募【费用流】
正题 题目链接:https://www.luogu.com.cn/problem/P3980 题目大意 \(n\)天,第\(i\)天需要\(A_i\)个志愿者.有\(m\)种志愿者,第\(i\)种从\ ...
- 突破GD渲染的图片马
<?php /* The algorithm of injecting the payload into the JPG image, which will keep unchanged aft ...
- CF850E Random Elections 题解
题目传送门 题目大意 没法描述,过于繁杂. 思路 果然自己是个菜鸡,只能靠读题解读题,难受极了,其实不是很难自己应该做得出来的....哎.... 不难发现可以统计 \(A\) 获胜的情况乘上 \(3\ ...
- LCT模板(学习笔记)(洛谷3690)(加边,删边,修改点权)
最近学习了一波LCT qwq 强势安利Flashhu的博客!!!!! 真的特别详细(可惜我不会弄链接) 如果有想要学习\(LCT\)的同学,可以直接看他的博客 我这里就简单写一点自己的体会啊. \(L ...
- ORM框架查询数据库时返回指定的字段
django model.objects.filter() 查询指定字段 1.model.objects.filter().values('field_name'),单个字段 2.model.obje ...
- 2020.12.20-Codeforces Round #105补题
B - Escape The princess is going to escape the dragon's cave, and she needs to plan it carefully. Th ...
- Java(4)运算符及表达式
作者:季沐测试笔记 原文地址:https://www.cnblogs.com/testero/p/15201675.html 博客主页:https://www.cnblogs.com/testero ...