A

#include <iostream>

using namespace std;

int main() {
int a, b, c;
cin >> a >> b >> c;
for(int i = 1; i <= 1000; i ++ ) {
if(c * i >= a && c * i <= b) {
cout << c * i ;
return 0;
}
if(c * i > b) break;
}
cout << "-1";
return 0; return 0;
}

B

#include <iostream>
#include <algorithm>
#include <cstring> #define LL long long
using namespace std; int main() {
string a, b;
int k; cin >> k >> a >> b;
LL cnt1 = 0, cnt2 = 0;
// cout << a << b << endl;
reverse(a.begin(), a.end());
reverse(b.begin(), b.end());
LL res = 1;
for(int i = 0; a[i]; i ++ ) {
int p = a[i] - '0';
cnt1 += p * res;
res *= k;
}
res = 1;
for(int i = 0; b[i]; i ++ ) {
int p = b[i] - '0';
cnt2 += p * res;
res *= k;
}
// cout << cnt1 << ' ' << cnt2 << endl;
cout << cnt1 * cnt2; return 0;
}

C

#include <iostream>
#include <algorithm>
#include <cstring>
#include <vector> #define LL long long
using namespace std; int main() {
int n; cin >> n;
vector<int> a(n);
LL ans = 0;
for(int &x: a) {
cin >> x;
ans += x;
}
LL p; cin >> p; LL res = p / ans * n;
LL pp = 0;
p %= ans; for(int i = 0; i < n; i ++ ) {
pp += a[i];
if(pp > p) {
cout << res + i + 1 << endl;
return 0;
}
} return 0;
}

D

线性DP

#include <iostream>
#include <algorithm>
#include <cstring>
#include <vector>
#include <queue>
#define pb push_back #define mod(x) (x) % MOD
#define LL long long using namespace std; const int MOD = 998244353, N = 1e5 + 10; LL cnt[10];
int n, a[N]; int main() {
cin >> n;
for(int i = 0; i < n; i ++ ) cin >> a[i];
vector<LL> p(10, 0), q(10, 0);
q[a[0]] = 1;
for(int i = 1; i < n; i ++ ) {
// p = q;
for(int j = 0; j < 10; j ++ ) {
p[j] = q[j] % MOD;
q[j] = 0;
}
for(int j = 0; j < 10; j ++ ) {
q[(j + a[i]) % 10] = mod(q[(j + a[i]) % 10] + p[j]);
q[(j * a[i]) % 10] = mod(q[(j * a[i]) % 10] + p[j]);
} }
for(int i = 0; i < 10; i ++ ) {
cout << q[i] % MOD << endl;
} return 0;
}

E

对于每个节点形成的链有两种可能

  • 这个节点是上端点
  • 这个节点是中转节点



    对于1号节点
  • 第一种有链:421、521、631、731
  • 第二种有链:213、4213、42137....

这样枚举可以不重不漏的找出所有的长度固定的链

而且,对于每个节点第一种有\(2^{n+1}\)个(正向逆向要重复计数),第二种有\((d-1)*{2^{d-1}}\)个

当然有的节点可能不存在那么多,也就是当剩余的层数不足d的时候,我们就需要一层一层的拓展

比如说往下扩展一层就多了 $2 * {2^{d-2}} $ 即 左边的层数所具有的节点 * 右边层数所具有的节点 永远都是 \(2^{d-1}\)

因此还剩多少层我就就会加多少个 \(2^{d-1}\)

AC_CODE

#include <bits/stdc++.h>
#define mod(x) ((x) % MOD)
#define LL long long using namespace std; const int N = 2e6 + 10, MOD = 998244353; LL num[N]; int main() {
// pre
num[0] = 1;
for(int i = 1; i < N; i ++ )
num[i] = mod(num[i - 1] * 2);
LL ans = 0;
LL n, d; cin >> n >> d; for(int i = 0; i < n; i ++ ) {
LL cnt = num[i];
LL mx = n - i - 1;
if(mx >= d) {
ans = mod(ans + mod(num[d + 1] * cnt)); // 求出以第i层的节点为 链的端点的所有个数
ans = mod(ans + mod(num[d - 1] * mod((d - 1) * cnt)));// 求出以第i层的节点为 链的转折点的所有个数
//转折过后必须向下转折 可以不重不漏
} else if(2 * mx >= d) {
ans = mod(ans + mod(mod(num[d - 1] * cnt) * (2 * mx - d + 1)));
//求出以第i层的节点为 链的转折点的所有个数 因为不可以为 链的端点
} else break;
}
cout << mod(ans) << endl; return 0;
}

F

思路

先求出以1号节点为起点,其他的点到1号点的距离,然后对于1号点子节点,我们再继续求以这个点为起点的路径长度的时候

我们可以把其他的点分为两种

  • 一种是以此点为根的点
  • 一种不是以此点为根的点

对于第一种,每条路径长度减去1就是我们想知道的路径长度,第二种则需要加上1

整理一下会发现就是 ans[j] = ans[u] + (n - size(j)) - size(j); (u是j的根节点)

因此可以用树形DP解决这个问题

AC_CODE

#include <iostream>
#include <cstring>
#define LL long long using namespace std; const int N = 2e5 + 10, M = N << 1; int h[N], e[M], ne[M], idx;
int n;
LL ans[N], s[N]; void add(int a, int b) {
e[idx] = b;
ne[idx] = h[a];
h[a] = idx ++;
} int dfs(int u, int fa, int cnt) {
ans[1] += cnt;
int res = 1;
for(int i = h[u]; ~i; i = ne[i]) {
int j = e[i];
if(j == fa)
continue;
res += dfs(j, u, cnt + 1);
}
s[u] = res;
return res;
} void dfs1(int u, int fa) {
for(int i = h[u]; ~i; i = ne[i]) {
int j = e[i];
if(j == fa)
continue;
ans[j] = ans[u] + n - 2 * s[j];
dfs1(j, u);
}
} int main() {
memset(h, -1, sizeof h);
scanf("%d", &n);
for(int i = 1; i < n; i ++ ) {
int u, v;
scanf("%d%d", &u, &v);
add(u, v); add(v, u);
}
dfs(1, -1, 0);
dfs1(1, -1);
for(int i = 1; i <= n; i ++ )
printf("%lld\n", ans[i]);
return 0;
}

AtCoder Beginner Contest 220 A-F的更多相关文章

  1. AtCoder Beginner Contest 238 A - F 题解

    AtCoder Beginner Contest 238 \(A - F\) 题解 A - Exponential or Quadratic 题意 判断 \(2^n > n^2\)是否成立? S ...

  2. AtCoder Beginner Contest 220部分题(G,H)题解

    刚开始的时候被E题卡住了,不过发现是个数学题后就开始使劲推式子,幸运的是推出来了,之后的F题更是树形DP换根的模板吧,就草草的过了,看了一眼G,随便口胡了一下,赶紧打代码,毕竟时间不多了,最后也没打完 ...

  3. AtCoder Beginner Contest 131 Task F. Must Be Rectangular

    Score: 600 points Approach 固定横坐标 $x$,考虑横坐标为 $x$ 的竖直线上最多可以有几个点. Observations 若最初两条竖直线 $x_1$.$x_2$ 上都有 ...

  4. AtCoder Beginner Contest 137 F

    AtCoder Beginner Contest 137 F 数论鬼题(虽然不算特别数论) 希望你在浏览这篇题解前已经知道了费马小定理 利用用费马小定理构造函数\(g(x)=(x-i)^{P-1}\) ...

  5. AtCoder Beginner Contest 136

    AtCoder Beginner Contest 136 题目链接 A - +-x 直接取\(max\)即可. Code #include <bits/stdc++.h> using na ...

  6. AtCoder Beginner Contest 154 题解

    人生第一场 AtCoder,纪念一下 话说年后的 AtCoder 比赛怎么这么少啊(大雾 AtCoder Beginner Contest 154 题解 A - Remaining Balls We ...

  7. AtCoder Beginner Contest 153 题解

    目录 AtCoder Beginner Contest 153 题解 A - Serval vs Monster 题意 做法 程序 B - Common Raccoon vs Monster 题意 做 ...

  8. AtCoder Beginner Contest 177 题解

    AtCoder Beginner Contest 177 题解 目录 AtCoder Beginner Contest 177 题解 A - Don't be late B - Substring C ...

  9. AtCoder Beginner Contest 161

    比赛链接:https://atcoder.jp/contests/abc161/tasks AtCoder Beginner Contest 161 第一次打AtCoder的比赛,因为是日本的网站终于 ...

随机推荐

  1. (4329)Ping pong

    思路:树状数组. 考虑第i个人当裁判,那么只要计算出在他之前比他小的乘在他之后比他大的与在他之前比他大的乘在他之后比他小的,那么用两个树状数组维护一下就行了.复杂的(n*log(n)) 1 #incl ...

  2. 第三十七个知识点: The Number Field Sieve

    第三十七个知识点: The Number Field Sieve 数域筛法(The Number Field Sieve ,NFS)是已知的分解算法中最有效率的.它的运行时间取决于被分解的数的大小而不 ...

  3. Ubuntu 16.04远程配置Jupyter Notebook

    安装和配置Jupyter Notebook 安装jupyter notebook conda conda install -c conda-forge notebook pip pip install ...

  4. 替代瑞昱RTD2166|pin对pin替代RTD2166|CS5202芯片

    替代瑞昱RTD2166,pin对pin替代RTD2166,外围器件少,设计版框尺寸小,整套方案成本BOM更低. 一. CS5202功能概述  CS5202是一款DP端口到VGA转换器,它结合了DP输入 ...

  5. 使用 history 对象和 location 对象中的属性和方法制作一个简易的网页浏览工具

    查看本章节 查看作业目录 需求说明: 使用 history 对象和 location 对象中的属性和方法制作一个简易的网页浏览工具 实现思路: 使用history对象中的 forward() 方法和 ...

  6. JavaScript交互式网页设计笔记 • 【目录】

    章节 内容 实践练习 JavaScript交互式网页设计作业目录(作业笔记) 第1章 JavaScript交互式网页设计笔记 • [第1章 JavaScript基本语法] 第2章 JavaScript ...

  7. 微信支付 V3 RSA 加签踩坑

    最近在做微信支付,根据微信官方文档上的要求 用RSA加签去请求支付窗口的调起,下面详细列举支付开发过程: 当前项目的流程大概是,前端根据后端要求提交数据------->拿到后台返回的prepay ...

  8. 『无为则无心』Python函数 — 32、递归

    目录 1.什么叫递归函数 2.递归的应用场景 3.递归的特点 4.应用:3以内数字累加和 5.应用:阶乘 6.总结 1.什么叫递归函数 Python中,在函数内部,可以调用其他函数.如果一个函数在内部 ...

  9. Selenium_使用switch_to.alert处理弹窗(14)

    与switch_to.window 和 switch_to.frame 相比,switch_to.alert的alert方法使用了@property 装饰器,所以在使用时alert被当成属性调用. 演 ...

  10. spring-Ioc(二)学习笔记

    属性注入方式 设值注入:也就是set注入,通过setter方法注入 java Bean private ITestDao dao; public void setDao(ITestDao dao){ ...