题目这里

A.map裸题

#include <bits/stdc++.h>

using namespace std;

map <string, int> p;

string s[] = {
"Tetrahedron",
"Cube",
"Octahedron" ,
"Dodecahedron",
"Icosahedron"
}; int ss[] = {, , , , }; int main() {
ios::sync_with_stdio(false);
for(int i = ;i < ;i ++) p[s[i]] = ss[i];
int n, m = ;
string str;
cin >> n;
while(n --) cin >> str, m += p[str];
cout << m;
return ;
}

B.贪心,先上的课尽早下课,后上的课尽量晚点上课

#include <bits/stdc++.h>

using namespace std;

int n, l, r, l1, l2, r1, r2, ans;

int main() {
ios::sync_with_stdio(false);
r1 = r2 = 1e9;
cin >> n;
while(n --) {
cin >> l >> r;
l1 = max(l1, l);
r1 = min(r1, r);
}
cin >> n;
while(n --) {
cin >> l >> r;
l2 = max(l2, l);
r2 = min(r2, r);
}
ans = max(max(, l2 - r1), max(, l1 - r2));
cout << ans;
return ;
}

C.先讨论一下

如果n <= m ,那么前 n - 1 天都是当天补满,然后第 n 天被吃光

当 n > m , 前 m 天肯定吃不完的

然后第 m + 1 天鸟走之后(没吃完)下一天再补上,就只有 n - 1 了

第 m + 2 天鸟走之后(没吃完)再补上,就只有 n - 1 - 2 了

......

第 ans 天鸟走之后仓库已经被吃光了

那么就有 n - (ans - m) * (ans - m - 1) / 2 - ans <= 0

令 t = ans - m , 化简以后就有 t * t + t >= 2 * (n - m)

这时候可以选择二分,右边界肯定是sqrt(2 * 1e18)啦,再大会爆long long

当然可以直接开根,然后左右小小调整一下就能出来结果

#include <bits/stdc++.h>

using namespace std;

int main() {
unsigned long long n, m, ans;
cin >> n >> m;
if(n <= m) cout << n;
else {
n = (n - m) * , ans = sqrt(n);
while(ans * ans + ans >= n) ans --;ans ++;
while(ans * ans + ans < n) ans ++;
cout << ans + m;
}
return ;
}

D.为了避免重复,我们选择这样一个策略:

每当遇到一个左括号,我们计算包含这个左括号的合法序列数量加入ans

显然如果当前左括号左边有 L 个左括号(不含这个)

右边有 R 个右括号,那么对ans贡献为

sigma(C(L,i ) * C(R,i + 1) ),0 <= i < R

然后我们用一个范德蒙恒等式就变成了求 C(L + R ,R - 1)

剩下求组合数就O(nlogn)预处理,O(1)计算即可

#include <cstdio>
#include <iostream> const int Mod = 1e9 + ; char s[]; long long ans, fac[], v[]; int calc(long long x, int k = Mod - ) {
long long ret = ;
for(;k;k >>= , x = x * x % Mod)
if(k & ) ret = ret * x % Mod;
return ret;
} long long C(int n, int m) {
return fac[n] * v[m] % Mod * v[n - m] % Mod;
} int main() {
fac[] = v[] = ;
for(int i = ;i <= ;i ++)
fac[i] = fac[i - ] * i % Mod, v[i] = calc(fac[i]);
int l = , r = ;
scanf("%s", s);
for(int i = ;s[i];i ++) r += (s[i] == ')');
for(int i = ;s[i];i ++) {
if(s[i] == ')') r --;
else ans += C(l + r, r - ), ans %= Mod, l ++;
}
printf("%lld", ans);
return ;
}

E.原序列为 1 - n 的排列,每次操作交换两数位置,并操作后求出逆序对个数

转化为二维模型就能很熟悉的联系到cdq上,于是 cdq + 树状数组 解决即可

当然树套树也可做,不再分析思路

用cdq来做呢,我们每次计算这次操作对逆序对数的改变量即为

( l, a[r] )左上和右下矩阵中点的个数 + ( r, a[l] ) 左上和右下矩阵中点的个数

- ( l, a[l] ) 左上和右下矩阵中点的个数 - ( r, a[r] ) 左上和右下矩阵中点的个数

当然我们需要注意避免逆序对的重复计算

另外需要注意我们计算的是改变量,所以答案是需要累加的

#include <bits/stdc++.h>

#define lb(x) (x & (-x))
#define rep(i, j, k) for(int i = j;i <= k;i ++) using namespace std; const int maxn = , maxm = maxn * ; struct node {
int x, y, op, bel, id; bool operator < (const node &a) const {
if(x != a.x) return x < a.x;
if(y != a.y) return y < a.y;
return id < a.id;
}
}q[maxm], q0[maxm]; int n, m, k, a[maxn], c[maxn];
long long ans[maxn]; void add(int i, int x) {
while(i <= n) c[i] += x, i += lb(i);
} int ask(int i) {
int ret = ;
while(i > ) ret += c[i], i -= lb(i);
return ret;
} void solve(int l, int r) {
if(l == r) return;
int mid = (l + r) >> , cnt = ;
solve(l, mid), solve(mid + , r);
rep(i, l, mid) if(q[i].op == || q[i].op == -) q0[++ cnt] = q[i];
rep(i, + mid, r) if(q[i].op != && q[i].op != -) q0[++ cnt] = q[i];
sort(q0 + , q0 + cnt + );
rep(i, , cnt) {
if(q0[i].op == || q0[i].op == -) add(q0[i].y, q0[i].op / );
else ans[q0[i].bel] += ask(q0[i].y) * q0[i].op;
}
rep(i, , cnt) if(q0[i].op == || q0[i].op == -) add(q0[i].y, q0[i].op / -);
} int main() {
ios::sync_with_stdio(false);
int l, r; cin >> n >> m;
rep(i, , n) a[i] = i, q[++ k] = (node){i, i, , , k};
rep(i, , m) {
cin >> l >> r;
if(l != r) {
q[++ k] = (node){l - , n, -, i, k};
q[++ k] = (node){n, a[l] - , -, i, k};
q[++ k] = (node){l - , a[l] - , , i, k};
q[++ k] = (node){l, a[l], -, , k};
q[++ k] = (node){r - , n, -, i, k};
q[++ k] = (node){n, a[r] - , -, i, k};
q[++ k] = (node){r - , a[r] - , , i, k};
q[++ k] = (node){r, a[r], -, , k};
q[++ k] = (node){l - , n, , i, k};
q[++ k] = (node){n, a[r] - , , i, k};
q[++ k] = (node){l - , a[r] - , -, i, k};
q[++ k] = (node){l, a[r], , , k};
q[++ k] = (node){r - , n, , i, k};
q[++ k] = (node){n, a[l] - , , i, k};
q[++ k] = (node){r - , a[l] - , -, i, k};
q[++ k] = (node){r, a[l], , , k};
swap(a[l], a[r]);
}
}
solve(, k);
rep(i, , m) {
ans[i] += ans[i - ];
cout << ans[i] << endl;
}
return ;
}

代码写的很丑很暴力,仅供参考

Codeforces Round #404 (Div. 2)——ABCDE的更多相关文章

  1. Codeforces Round #261 (Div. 2)[ABCDE]

    Codeforces Round #261 (Div. 2)[ABCDE] ACM 题目地址:Codeforces Round #261 (Div. 2) A - Pashmak and Garden ...

  2. Codeforces Round #404 (Div. 2) C 二分查找

    Codeforces Round #404 (Div. 2) 题意:对于 n and m (1 ≤ n, m ≤ 10^18)  找到 1) [n<= m] cout<<n; 2) ...

  3. Codeforces Round #279 (Div. 2) ABCDE

    Codeforces Round #279 (Div. 2) 做得我都变绿了! Problems     # Name     A Team Olympiad standard input/outpu ...

  4. Codeforces Round #404 (Div. 2) DE

    昨晚玩游戏竟然不小心错过了CF..我是有多浪啊. 今天总算趁着下课时间补了,感觉最后两题还是挺有意思的,写个题解. D: 题目大意: 给出一个括号序列,问有多少个子序列 是k个'(' + k个')' ...

  5. Codeforces Round #404 (Div. 2) D. Anton and School - 2 数学

    D. Anton and School - 2 题目连接: http://codeforces.com/contest/785/problem/D Description As you probabl ...

  6. Codeforces Round #404 (Div. 2) A,B,C,D,E 暴力,暴力,二分,范德蒙恒等式,树状数组+分块

    题目链接:http://codeforces.com/contest/785 A. Anton and Polyhedrons time limit per test 2 seconds memory ...

  7. Codeforces Round #404 (Div. 2)(A.水,暴力,B,排序,贪心)

    A. Anton and Polyhedrons time limit per test:2 seconds memory limit per test:256 megabytes input:sta ...

  8. Codeforces Round #460 (Div. 2) ABCDE题解

    原文链接http://www.cnblogs.com/zhouzhendong/p/8397685.html 2018-02-01 $A$ 题意概括 你要买$m$斤水果,现在有$n$个超市让你选择. ...

  9. Codeforces Round #404 (Div. 2)A,B,C

    A. Anton and Polyhedrons 题目链接:http://codeforces.com/contest/785/problem/A 智障水题 实现代码: #include<bit ...

随机推荐

  1. 懒人学习automake, Makefile.am,configure.ac

    已经存在Makefile.am,如何生成Makefile? 步骤: [root@localhost hello]# autoscan .///在当前文件夹中搜索 [root@localhost hel ...

  2. vue中时间控件绑定多个输入框

    首先去下载laydate时间控件,引入到相应的模板中 <input type="text" val-required="" value="&qu ...

  3. [Swift通天遁地]八、媒体与动画-(3)实现视频播放的水印、Overlay、暂停时插入广告等效果

    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★➤微信公众号:山青咏芝(shanqingyongzhi)➤博客园地址:山青咏芝(https://www.cnblogs. ...

  4. [Swift通天遁地]九、拔剑吧-(16)搭建卡片页面:Card Peek/Pop动态切换界面

    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★➤微信公众号:山青咏芝(shanqingyongzhi)➤博客园地址:山青咏芝(https://www.cnblogs. ...

  5. 11 在C#中写文件

    在这个练习中,我们来学习如何把我们想要的东西写到文件中.我们在这个练习中还是使用File类中的方法来完成写文件的操作. 在这个练习中我们要用C#创建一个纯文本文件ex11.txt 放到c盘的Exerc ...

  6. Java系列学习(五)-流程控制语句

    1.顺序结构 1.if语句 (1)图例 (2)三种格式 A:格式1 B:格式2 C:格式3 2.swich语句 图例: 格式: [注]input可以是byte,short,int,char:JDK5以 ...

  7. Laravel5.1学习笔记16 数据库2 查询构造器(这个不用看,不如用EloquentORM)

    Introduction Retrieving Results Aggregates Selects Joins Unions Where Clauses Advanced Where Clauses ...

  8. Android RecyclerView遇到notifyDataSetChanged无效时的解决方案

    一.简述 不管AbsListView(ListView.GridView)或是新出的RecyclerView,在使用notifyDataSetChanged方法更新列表数据时,一定要保证数据为同个对象 ...

  9. UDP网络程序实例

    根据前面所讲的网络编程的基础知识,以及UDP网络编程的特点,下面创建一个广播数据报程序.广播数据报是一种较新的技术,类似于电台广播,广播电台需要在指定的波段和频率上广播信息,收听者也要将收音机调到指定 ...

  10. pengyue-form 模块 dropdown 关系联动

    <script> window.onload=function() { var school= document.getElementById("dnn_ctr5973_View ...