Comet OJ - Contest #8

传送门

A.杀手皇后

签到。

Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 1005;
vector <string> v;
int n;
string s;
int main() {
ios::sync_with_stdio(false); cin.tie(0);
cin >> n;
for(int i = 1; i <= n; i++) {
cin >> s;
v.push_back(s);
}
sort(v.begin(), v.end());
cout << v[0];
return 0;
}

B.支援城市

把式子拆开就行。

Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 1e5 + 5;
int n;
int w[N];
ll sumv, sum;
int main() {
ios::sync_with_stdio(false); cin.tie(0);
cin >> n;
for(int i = 1; i <= n; i++) cin >> w[i], sum += w[i];
for(int i = 1; i <= n; i++) sumv += 1ll * w[i] * w[i];
for(int i = 1; i <= n; i++) {
ll ans = sumv + 1ll * n * w[i] * w[i];
ans -= 2ll * w[i] * sum;
cout << ans << " \n"[i == n];
}
return 0;
}

C.符文能量

手玩一下样例,发现答案与合并顺序无关,然后就可以愉快的\(dp\)了。

因为最终序列的状态是有三个阶段的,所以就\(dp[i,0/1/2]\)来表示三种状态,然后分别转移就行。

Code
#include <bits/stdc++.h>
#define INF 0x3f3f3f3f
using namespace std;
typedef long long ll;
const int N = 1e5 + 5;
ll n, k;
ll a[N], b[N], c[N];
ll dp[N][3][2];
int main() {
ios::sync_with_stdio(false); cin.tie(0);
cin >> n >> k;
for(int i = 1; i <= n; i++) cin >> a[i] >> b[i];
for(int i = 1; i < n; i++) c[i] = a[i + 1] * b[i];
n--;
for(int i = 1; i <= n; i++) {
dp[i][0][0] = dp[i - 1][0][0] + c[i]; dp[i][0][1] = min(dp[i - 1][0][1], dp[i - 1][1][1]) + c[i]; dp[i][1][0] = dp[i - 1][0][0] + c[i] * k;
dp[i][1][1] = min(dp[i - 1][2][1], dp[i - 1][1][0]) + c[i] * k; dp[i][2][1] = min(dp[i - 1][2][1], dp[i - 1][1][0]) + c[i] * k * k;
}
ll ans = INF;
ans = min(ans, min(dp[n][0][0], min(dp[n][0][1], min(dp[n][1][0], min(dp[n][1][1], dp[n][2][1])))));
cout << ans;
return 0;
}

还有一种前缀和的搞法,感觉说不太清楚,见代码吧:

Code
#include <bits/stdc++.h>
#define INF 0x3f3f3f3f
using namespace std;
typedef long long ll;
const int N = 1e5 + 5;
ll n, k;
ll a[N], b[N], c[N], d[N];
int main() {
ios::sync_with_stdio(false); cin.tie(0);
cin >> n >> k;
for(int i = 1; i <= n; i++) cin >> a[i] >> b[i];
for(int i = 1; i < n; i++) c[i] = a[i + 1] * b[i], d[i] = d[i - 1] + c[i];
n--;
ll ans = min(d[n], d[n] * k * k), Min = 0;
for(int i = 1; i <= n; i++) {
ans = min(ans, c[i] * k + d[i - 1] * k * k + d[n] - d[i] + Min);
Min = min(Min, -d[i] * k * k + c[i] * k + d[i - 1]);
}
cout << ans;
return 0;
}

D.菜菜种菜

题目给出的询问都为连续的区间,考虑离线处理.

将题目所求转化为数学语言就是,对于一段区间[l,r],找到所有的点\(u\),满足对于所有的\((u,v)\),不存在\(v\in [l,r]\)。

那么我们就可以直接对于所有的点找到一个最大区间[L,R],表示在这个区间中,点\(u\)是不能到达任意点的,那么我们对于每个区间\([l,r]\),其中所有的点\(u\)对答案有贡献的话就会满足:\(L\leq l,r\leq R\)。

之后用树状数组进行增删查询的操作就行。

代码如下:

Code
#include <bits/stdc++.h>
#define MP make_pair
#define INF 0x3f3f3f3f
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int N = 1e6 + 5;
int n, m, q;
short a[N];
int l[N], r[N];
vector <pii> v[N];
vector <int> del[N];
int c[N];
int lowbit(int x) {return x & (-x);}
void update(int x, int v) {
for(; x < N; x += lowbit(x)) c[x] += v;
}
ll query(int x) {
ll ans = 0;
for(; x; x -= lowbit(x)) ans += c[x];
return ans;
}
int main() {
ios::sync_with_stdio(false); cin.tie(0);
cin >> n >> m >> q;
memset(r, INF, sizeof(r));
for(int i = 1; i <= n; i++) cin >> a[i];
for(int i = 1; i <= m; i++) {
int u, v; cin >> u >> v;
if(v < u) l[u] = max(l[u], v);
else r[u] = min(r[u], v);
}
for(int i = 1; i <= n; i++) {
l[i]++;
if(r[i] == INF) continue;
del[r[i]].push_back(i);
}
for(int i = 1; i <= q; i++) {
int L, R; cin >> L >> R;
v[R].push_back(MP(L, i));
}
ll ans = 0;
for(int i = 1; i <= n; i++) {
update(l[i], a[i]);
update(i + 1, -a[i]);
for(auto it : del[i]) {
update(l[it], -a[it]);
update(it + 1, a[it]);
}
for(auto it : v[i]) {
ans ^= 1ll * it.second * query(it.first);
}
}
cout << ans;
return 0;
}

Comet OJ - Contest #8的更多相关文章

  1. Comet OJ - Contest #2 简要题解

    Comet OJ - Contest #2 简要题解 cometoj A 模拟,复杂度是对数级的. code B 易知\(p\in[l,r]\),且最终的利润关于\(p\)的表达式为\(\frac{( ...

  2. Comet OJ - Contest #2简要题解

    Comet OJ - Contest #2简要题解 前言: 我没有小裙子,我太菜了. A 因自过去而至的残响起舞 https://www.cometoj.com/contest/37/problem/ ...

  3. Comet OJ - Contest #4--前缀和

    原题:Comet OJ - Contest #4-B https://www.cometoj.com/contest/39/problem/B?problem_id=1577传送门 一开始就想着暴力打 ...

  4. Comet OJ - Contest #11 题解&赛后总结

    Solution of Comet OJ - Contest #11 A.eon -Problem designed by Starria- 在模 10 意义下,答案变为最大数的最低位(即原数数位的最 ...

  5. Comet OJ - Contest #13-C2

    Comet OJ - Contest #13-C2 C2-佛御石之钵 -不碎的意志-」(困难版) 又是一道并查集.最近做过的并查集的题貌似蛮多的. 思路 首先考虑,每次处理矩形只考虑从0变成1的点.这 ...

  6. Comet OJ - Contest #13 「火鼠的皮衣 -不焦躁的内心-」

    来源:Comet OJ - Contest #13 芝士相关: 复平面在信息学奥赛中的应用[雾 其实是道 sb 题??? 发现原式貌似十分可二项式定理,然后发现确实如此 我们把 \(a^i\) 替换成 ...

  7. Comet OJ - Contest #13 「佛御石之钵 -不碎的意志-」(hard)

    来源:Comet OJ - Contest #13 一眼并查集,然后发现这题 tmd 要卡常数的说卧槽... 发现这里又要用并查集跳过访问点,又要用并查集维护联通块,于是开俩并查集分别维护就好了 一开 ...

  8. Comet OJ - Contest #5

    Comet OJ - Contest #5 总有一天,我会拿掉给\(dyj\)的小裙子的. A 显然 \(ans = min(cnt_1/3,cnt_4/2,cnt5)\) B 我们可以感性理解一下, ...

  9. Comet OJ Contest #13 D

    Comet OJ Contest #13 D \(\displaystyle \sum_{i=0}^{\left\lfloor\frac{n}{2}\right\rfloor} a^{i} b^{n- ...

随机推荐

  1. pycharm安装第三方包问题解决

    pycharm安装第三方包问题解决 pycharm是一个基于python的非常好用的集成开发环境,而python有许多非常不错的开源第三方库,这就需要将一些这样的第三方库导入到我们的项目中去了.然而, ...

  2. C#线程学习笔记二:线程池中的工作者线程

    本笔记摘抄自:https://www.cnblogs.com/zhili/archive/2012/07/18/ThreadPool.html,记录一下学习过程以备后续查用. 一.线程池基础 首先,创 ...

  3. 一分钟理解Java公平锁与非公平锁

    本人免费整理了Java高级资料,涵盖了Java.Redis.MongoDB.MySQL.Zookeeper.Spring Cloud.Dubbo高并发分布式等教程,一共30G,需要自己领取.传送门:h ...

  4. CF977D Divide by three, multiply by two

    题目链接 我同学在旁边做者道题,我也看了一下 真的好水难 一看这道题,直接搜索 剪枝是不可能剪枝的一辈子不可能 Code #include <cstdio> #include <io ...

  5. FCC---CSS Flexbox: Add Flex Superpowers to the Tweet Embed

    To the right is the tweet embed that will be used as the practical example. Some of the elements wou ...

  6. MySQL 社区版 安装小记

    根据刘铁猛老师的教程,自己折腾一下 1. 安装包准备 在Windows10 64bit上安装,故需要准备vc++ 2013和2015的Redistributable的包,搜索即有,无需细说. 示例数据 ...

  7. apache commons lang架包介绍

    commons lang组件介绍和学习 介绍 Java语言开发时有一个隐患,那就是java支持null值,这就导致很多时候操作可能会出异常. 因此很多第三方组件都会提供安全null safe 操作(即 ...

  8. Maven详解(非原创)

    文章大纲 一.maven功能介绍二.maven整合javaweb案例三.私服应用(了解)四.总结五.相关资料下载六.参考文章 一.maven功能介绍 1. maven基本介绍   Maven的Apac ...

  9. Tornado—添加请求头允许跨域请求访问

    跨域请求访问 如果是前后端分离,那就肯定会遇到cros跨域请求难题,可以设置一个BaseHandler,然后继承即可. class BaseHandler(tornado.web.RequestHan ...

  10. [洛谷P1169][题解][ZJOI2007]午餐

    这是题目吗? 显然的DP,讲几个重要的地方 1.贪心:让吃饭时间长的先排队(证明从略) 2.状态: f[i][j][k]代表前i个人,一号时间j,二号时间k显然MLE 所以压缩成f[i][j]代表前i ...