11.6NOIP模拟赛解题报告
心路历程
预计得分:\(100 + 100 + 100 = 300\)
实际得分:\(100 +100 +100 = 300\)
学OI两年终于AK了一次qwq(虽然题目炒鸡水。。)
纪念一下这令人激动的时刻。。
8点开始考,9:40就都拍上了。。可见题目确实水。。然后又去做了做另一套
Sol
T1
题目中给的两个数组没啥卵用,都是可以直接求的
然后离散化+树状数组就完了
#include<cstdio>
#include<algorithm>
#include<iostream>
#define lb(x) (x & (-x))
#define LL long long
using namespace std;
const LL MAXN = 1e6 + 10;
inline LL read() {
char c = getchar(); LL x = 0, f = 1;
while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
return x * f;
}
LL N, f[MAXN], g[MAXN], a[MAXN], mod;
LL add(LL x, LL y) {
if(x + y < 0) return x + y + mod;
return x + y >= mod ? x + y - mod : x + y;
}
LL mul(LL x, LL y) {
return 1ll * x * y % mod;
}
LL fp(LL a, LL p) {
LL base = 1;
while(p) {
if(p & 1) base = mul(base, a);
a = mul(a, a); p >>= 1;
}
return base;
}
LL date[MAXN], num;
void Des() {
sort(date + 1, date + num + 1);
num = unique(date + 1, date + num + 1) - date - 1;
for(LL i = 1; i <= N; i++) f[i] = lower_bound(date + 1, date + num + 1, f[i]) - date,
g[i] = lower_bound(date + 1, date + num + 1, g[i]) - date;
}
LL T[MAXN];
void Add(LL x, LL val) {
while(x <= num) T[x] += val, x += lb(x);
}
LL Query(LL x) {
LL ans = 0;
while(x) ans += T[x], x -= lb(x);
return ans;
}
int main() {
freopen("calc.in", "r", stdin);
freopen("calc.out", "w", stdout);
N = read(); mod = read();
for(LL i = 1; i <= N; i++) a[i] = read(), f[i] = fp(i, a[i]), g[i] = fp(a[i], i),
date[++num] = f[i], date[++num] = g[i];
Des();
LL ans = 0;
for(LL i = N; i >= 1; i--) {
ans += Query(f[i] - 1);
Add(g[i], 1);
}
cout << ans;
return 0;
}
T2
这题比较interesting啊。
我是先做的T3再回来做的T2
首先二分答案
很显然的一个贪心是从左往右扫,如果遇到一个不合法的点\(i\),那么升级\(i + R\)处的炮台。。
和暴力拍了10000多组没错误。。赢了
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<iostream>
#define LL long long
using namespace std;
const LL MAXN = 2e6;
inline LL read() {
char c = getchar(); LL x = 0, f = 1;
while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
return x * f;
}
LL N, R;
LL tag[MAXN], s[MAXN], a[MAXN], b[MAXN], K;
bool check(LL val) {
memset(tag, 0, sizeof(tag));
LL now = 0, res = K, flag = 1;
for(LL i = 1; i <= N; i++) {
now += tag[i];
a[i] += now;
if(a[i] < val) now += val - a[i], tag[i + 2 * R + 1] -= val - a[i], res -= val - a[i];
if(res < 0) {flag = 0; break;}
}
memcpy(a, b, sizeof(a));
return flag;
}
LL Query(LL l, LL r) {
r = min(r, N);
if(l < 0) return s[r];
return s[r] - s[l];
}
int main() {
freopen("game.in", "r", stdin); freopen("game.out", "w", stdout);
N = read(); R = read(); K = read();
for(LL i = 1; i <= N; i++) a[i] = read(), s[i] = s[i - 1] + a[i];
for(LL i = 1; i <= N; i++) a[i] = Query(i - R - 1, i + R);
for(LL i = 1; i <= N; i++) b[i] = a[i];
LL l = 0, r = 3e18, ans = 0;
while(l <= r) {
LL mid = (l + r) >> 1;
if(check(mid)) l = mid + 1, ans = mid;
else r = mid - 1;
}
cout << ans;
return 0;
}
T3
出题人还能再套路一点么。。
首先把询问离线后从小到大排序
合并的时候用带权并查集维护一下
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<vector>
#define Pair pair<LL, LL>
#define MP make_pair
#define fi first
#define se second
#define LL long long
using namespace std;
const LL MAXN = 1e6 + 10, INF = 1e9 + 10;
inline LL read() {
char c = getchar(); LL x = 0, f = 1;
while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();}
while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
return x * f;
}
LL N, M, Q, cnt, fa[MAXN], w[MAXN], ans, out[MAXN];
struct Edge {
LL u, v, w;
bool operator < (const Edge &rhs) const {
return w < rhs.w;
}
}E[MAXN];
Pair q[MAXN];
LL find(LL x) {
return fa[x] == x ? fa[x] : fa[x] = find(fa[x]);
}
void AddEdge(LL i) {
LL x = E[i].u, y = E[i].v, v = E[i].w;
LL fx = find(x), fy = find(y);
if(fx == fy) w[fx] += v, ans = max(ans, w[fx]);
else {
fa[fx] = fy; w[fy] += v + w[fx]; w[fx] = 0;
ans = max(ans, w[fy]);
}
}
int main() {
freopen("graph.in", "r", stdin); freopen("graph.out", "w", stdout);
N = read(); M = read(); Q = read();
for(LL i = 1; i <= N; i++) fa[i] = i;
for(LL i = 1; i <= M; i++) E[i].u = read(), E[i].v = read(), E[i].w = read();
sort(E + 1, E + M + 1);
for(LL i = 1; i <= Q; i++) q[i] = MP(read(), i);
sort(q + 1, q + Q + 1);
LL j = 1;
for(LL i = 1; i <= Q; i++) {
while(j <= M && E[j].w <= q[i].fi)
AddEdge(j++);
out[q[i].se] = ans;
}
for(LL i = 1; i <= Q; i++) printf("%I64d\n", out[i]);
return 0;
}
11.6NOIP模拟赛解题报告的更多相关文章
- 11.1NOIP模拟赛解题报告
心路历程 预计得分:\(100 + 100 + 50\) 实际得分:\(100 + 100 + 50\) 感觉老师找的题有点水呀. 上来看T1,woc?裸的等比数列求和?然而我不会公式呀..感觉要凉 ...
- 11.7NOIP模拟赛解题报告
心路历程 预计得分:\(50 + 100 + 100\) 实际得分:\(50 + 100 +100\) T2 T3两道数据结构题美滋滋,然而写完就过去\(3h\)美滋滋 T1数学题学弟们都会做Orzz ...
- 11.5NOIP模拟赛解题报告
心路历程 预计得分:\(100 + 40 + 30 = 170\) 实际得分:\(100 +100 + 50 = 250\) 辣鸡数据毁我青春 T1一眼不会做感觉要凉 T2好像一波折半搜索就做完了 T ...
- 10.30 NFLS-NOIP模拟赛 解题报告
总结:今天去了NOIP模拟赛,其实是几道USACO的经典的题目,第一题和最后一题都有思路,第二题是我一开始写了个spfa,写了一半中途发现应该是矩阵乘法,然后没做完,然后就没有然后了!第二题的暴力都没 ...
- 20201101gryz模拟赛解题报告
写在前面 2020rp++ 停课的第一场模拟赛 拿上一年的上一年的day1来考的, 结果得分期望220pts,实际135pts,rank3,太菜了 考着考着机房灯突然灭了,当时慌的一批 以为断电代码要 ...
- 2018.10.26NOIP模拟赛解题报告
心路历程 预计得分:\(100 + 100 + 70\) 实际得分:\(40 + 100 + 70\) 妈妈我又挂分了qwq..T1过了大样例就没管,直到临考试结束前\(10min\)才发现大样例是假 ...
- 2018.10.17NOIP模拟赛解题报告
心路历程 预计得分:\(100 + 100 +100\) 实际得分:\(100 + 100 + 60\) 辣鸡模拟赛.. 5min切掉T1,看了一下T2 T3,感觉T3会被艹爆因为太原了.. 淦了20 ...
- 2018.10.16 NOIP模拟赛解题报告
心路历程 预计得分:\(100 + 100 + 20 = 220\) 实际得分:\(100 + 100 + 30 = 230\) 辣鸡模拟赛.. T1T2都是一眼题,T3考验卡常数还只有一档暴力分. ...
- 20201115gryz模拟赛解题报告
写在前面 T1:期望100pts,实际0pts(7:50 ~ 8:50 T2:期望0pts,实际0pts(10:00 ~ 10:35 T3:期望20pts,实际40pts( 9:10 ~ 10:00, ...
随机推荐
- python update()
Python 字典 update() 函数把字典参数 dict2 的 key/value(键/值) 对更新到字典 dict 里. dict.update(dict2) 如果dict2里的键和dict1 ...
- using声明和using指示
using声明(using declaration) using namespacename::namespacemember; using声明一次只引入命名空间的一个成员.从效果上看就好像using ...
- AS添加依赖库提示Manifest merger failed解决办法
今天在学习<Android权威编程指南>时 在project structure中添加recyclerview时提示错误 按照提示添加tools:replace标签还是报错 然后切换至bu ...
- [摸鱼]cdq分治 && 学习笔记
待我玩会游戏整理下思绪(分明是想摸鱼 cdq分治是一种用于降维和处理对不同子区间有贡献的离线分治算法 对于常见的操作查询题目而言,时间总是有序的,而cdq分治则是耗费\(O(logq)\)的代价使动态 ...
- Storm个人学习总结
https://www.jianshu.com/p/c7fba7d6a24d https://www.cnblogs.com/peak-c/p/6297794.html https://blog.cs ...
- mongodb常用语法
// Employee表 { "_id" : "9e794fb9-12dc-457c-8c5a-69fe45c57685", "No" : ...
- Maven 编译报错
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.12.4:test (default-t ...
- Jmeter断言实例—响应断言
断言有很多种,最最最常用的一种就是响应断言,目前我用的最多是这一种,下面列举一个运用响应断言的实例 对相应的请求添加断言 **Main sample and sub-samples:断言应用于主采样器 ...
- 使用solr模拟京东搜素功能
1 项目需求 1.可以根据关键字搜索商品 2.可以根据商品的分类和价格过滤搜索结果 3.可以根据价格排序 4.可以实现基本的分页功能 2 界面效果 3 项目环境搭建 1.创建一个动态的web工程 2. ...
- 【Lua】LWT遍历指定目录并输出到页面中
首先用lua遍历目录: function getDirs(path) local s = {} function attrdir(p) for file in lfs.dir(p) do if fil ...