留念

C - 志愿者

排序。。按照题目规则说的排就可以。wa了两发我太菜了qwq

#include<bits/stdc++.h>
using namespace std;
const int MAXN = 1e6 + 10;
inline int read() {
char c = getchar(); int 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;
}
struct Node {
int t, k, id;
bool operator < (const Node &b) const {
if(t * k > b.t * b.k) return 1;
else if(t * k < b.t * b.k) return 0; if(t > b.t) return 1;
else if(t < b.t) return 0; return id < b.id;
}
}a[MAXN];
int main() {
int N = read();
for(int i = 1; i <= N; i++) {
a[i].t = read();
a[i].k = read();
a[i].id = i;
}
sort(a + 1, a + N + 1);
for(int i = 1; i <= N; i++)
cout << a[i].id << ' ';
return 0;
}

D - 终端

模拟一下就行了吧。。

#include<bits/stdc++.h>
using namespace std;
const int MAXN = 1e6 + 10;
inline int read() {
char c = getchar(); int 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;
}
map<string, int> mp;
string opt;
int main() {
#ifndef ONLINE_JUDGE
freopen("a.in", "r", stdin);
#endif
int N = read();
for(int i = 1; i <= N; i++) {
cin >> opt;
if(opt == "touch") {
string fn;
cin >> fn;
if(mp.find(fn) != mp.end()) continue;
mp[fn] = i;
} else if(opt == "rm") {
string fn;
cin >> fn;
if(mp.find(fn) == mp.end()) continue;
mp.erase(fn);
} else if(opt == "ls") {
vector<pair<int, string>> tmp;
for(auto &x: mp) {
tmp.push_back(make_pair(x.second, x.first));
}
sort(tmp.begin(), tmp.end());
for(auto x: tmp)
cout << x.second << '\n';
} else if(opt == "rename") {
string s1, s2;
cin >> s1 >> s2;
if(mp.find(s1) == mp.end()) continue;
int tmp = mp[s1];
mp.erase(s1);
mp[s2] = tmp;
}
}
return 0;
}

E - 运气

显然每个位置只能是1-6,因此所有状态数是\(6^{10}\)不会很大,dfs一下

#include<bits/stdc++.h>
using namespace std;
const int MAXN = 1e6 + 10;
const int mod = 1e9 + 7;
#define LL long long
inline int read() {
char c = getchar(); int 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, K, ans;
void dfs(int x, LL val) {
if(x == N + 1) {
ans += (val % K == 0);
return ;
}
for(int i = 1; i <= 6; i++)
dfs(x + 1, val * 10 + i);
}
int main() {
#ifndef ONLINE_JUDGE
freopen("a.in", "r", stdin);
#endif
N = read(); K = read();
dfs(1, 0);
cout << ans % mod;
return 0;
}

F - 游戏

首先题目有个bug,没有描述序列中有相同数的情况

那就假设所有数都不相同

可以分两种情况考虑,\(c1 < c2\)和\(c1 > c2\),相等的话直接输出\((N - 1) * c1\)就行。

这两种是类似的,这里只说第一种。

显然,数组中的每一对数都有两种情况:1.异或之后二进制位仅有1位为1,2.有多位唯一。

接下来我是转化成了图论问题去考虑,不然感觉有点复杂。

我们把所有异或之后二进制位仅有1个1的点之间连边。

考虑得到的这张图的性质:

对于任意一个联通块,我们一定能通过使用c1代价来每次消掉一个元素,并能保证最后只剩下一个元素。

emmm,,至于为什么,,可以从联通块中抽出一个树来,显然每次从叶子节点删,一定满足条件。

这样的话,只需要dfs出所有联通块,并求出其大小就好。

然后加加减减把答案算出来,具体看代码

复杂度\(O(n^2)\)(实际上还可以优化为\(O(nlogn)\),这里不再赘述)

#include<bits/stdc++.h>
using namespace std;
const int MAXN = 1e6 + 10;
const int mod = 1e9 + 7;
#define LL long long
inline int read() {
char c = getchar(); int 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;
}
int N, c1, c2, a[MAXN], vis[MAXN];
LL cnt = 0, ans;
vector<int> v[MAXN];
void dfs(int x) {
cnt++;
vis[x] = 1;
for(auto &to: v[x]) {
if(!vis[to])
dfs(to);
}
}
void dfs2(int i) {
cnt++;
vis[i] = 1;
for(int j = 1; j <= N; j++) {
if(__builtin_popcount(a[i] ^ a[j]) != 1 && i != j && vis[j] == 0) {
dfs2(j);
}
}
}
int main() {
#ifndef ONLINE_JUDGE
freopen("a.in", "r", stdin);
#endif
N = read();
c1 = read(); c2 = read();
for(int i = 1; i <= N; i++) a[i] = read();
if(c1 == c2) cout << 1ll * (N - 1) * c1;
else if(c1 < c2) {
for(int i = 1; i <= N; i++)
for(int j = 1; j <= N; j++)
if(__builtin_popcount(a[i] ^ a[j]) == 1 && i != j)
v[i].push_back(j);
LL sum = N;
for(int i = 1; i <= N; i++) {
if(!vis[i]) {
dfs(i);
ans += 1ll * (cnt - 1) * c1;
sum -= (cnt - 1);
cnt = 0;
}
}
ans += 1ll * (sum - 1) * c2;
cout << ans << '\n';
} else {
LL sum = N;
for(int i = 1; i <= N; i++) {
if(!vis[i]) {
dfs2(i);
ans += 1ll * (cnt - 1) * c2;
sum -= (cnt - 1);
cnt = 0;
}
}
ans += 1ll * (sum - 1) * c1;
cout << ans << '\n';
}
return 0;
}
/* */

G - 森林

(好久没打比赛,开场还以为是个LCT,后来又想操作子树的好像是ETT,不过还好及时终止了自己的危险想法)

感觉这题思维上比上一题简单不少,

对于第一个删边比较难操作

可以倒序考虑转化成加边。

然后并查集维护连通性就ok了

具体看代码

#include<bits/stdc++.h>
using namespace std;
const int MAXN = 1e6 + 10;
const int mod = 1e9 + 7;
#define LL long long
inline int read() {
char c = getchar(); int 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;
}
int N, M;
int fa[MAXN], sum[MAXN];
struct Edge {
int u, v;
}E[MAXN];
struct Opt {
int opt, a, b;
}op[MAXN];
int val[MAXN], flag[MAXN];
int find(int x) {
return x == fa[x] ? x : fa[x] = find(fa[x]);
}
void unionn(int x, int y) {
int fx = find(x), fy = find(y);
sum[fy] += sum[fx];
sum[fx] = 0;
fa[fx] = fy;
}
int query(int x) {
return sum[find(x)];
}
vector<int> ans;
int main() {
#ifndef ONLINE_JUDGE
freopen("a.in", "r", stdin);
#endif
N = read(); M = read();
for(int i = 1; i <= N; i++) val[i] = read(), fa[i] = i;
for(int i = 1; i < N; i++) {
E[i].u = read();
E[i].v = read();
}
for(int i = 1; i <= M; i++) {
op[i].opt = read();
if(op[i].opt == 1) {
op[i].a = read();//add E[a]
flag[op[i].a] = 1;
} else if(op[i].opt == 2) {
op[i].a = read(), op[i].b = read();
int tmp = val[op[i].a];//ÖǰµÄval
val[op[i].a] = op[i].b;
op[i].b = tmp;
} else {
op[i].a = read();
}
}
for(int i = 1; i <= N; i++) sum[i] = val[i];
for(int i = 1; i < N; i++) {
if(!flag[i]) {//not delet
unionn(E[i].u, E[i].v);
} }
for(int i = M; i >= 1; i--) {
if(op[i].opt == 1) {
int id = op[i].a;
unionn(E[id].u, E[id].v);
} else if(op[i].opt == 2) {
int id = op[i].a, pre = val[id];
int fx = find(id);
sum[fx] -= pre;
sum[fx] += op[i].b;
val[id] = op[i].b;
} else {
ans.push_back(query(op[i].a));
}
} reverse(ans.begin(), ans.end());
for(auto &x: ans) cout << x << '\n';
return 0;
}
/* */

第三届“传智杯”全国大学生IT技能大赛(初赛A组)题解的更多相关文章

  1. 第四届“传智杯”全国大学生IT技能大赛题解

    目录 A B C D E F G 今年题目难度普遍偏低.只有 D,F 还好. A 按题目给的公式计算即可.注意应在最后的答案中去掉小数部分. B 按照题意模拟即可.注意答案要与 \(0\) 取 \(\ ...

  2. 第二届360杯全国大学生信息安全技术大赛部分解题思路(WEB安全)

    第一题如下: 用burpsuit设置好代理后,点击发送验证码,可以看到如下: 然后go之后可以看到如下的验证码: 提交验证码后即可获得key 第二题如下: 通过/data/mysql_error_tr ...

  3. 2019"深思杯"山东省大学生网络安全技能大赛部分wp

    签到 载入OD查看字符串 上下左右 这道题出来的时候真的是一点思路都没有,一直以为是什么编码来着,看了大佬们的 wp 原来是画图 拿大佬的脚本: from PIL import Image im = ...

  4. 2018年高教社杯全国大学生数学建模竞赛C题解题思路

    题目 C题   大型百货商场会员画像描绘 在零售行业中,会员价值体现在持续不断地为零售运营商带来稳定的销售额和利润,同时也为零售运营商策略的制定提供数据支持.零售行业会采取各种不同方法来吸引更多的人成 ...

  5. 2018年高教社杯全国大学生数学建模竞赛D题解题思路

    题目 D题   汽车总装线的配置问题 一.问题背景 某汽车公司生产多种型号的汽车,每种型号由品牌.配置.动力.驱动.颜色5种属性确定.品牌分为A1和A2两种,配置分为B1.B2.B3.B4.B5和B6 ...

  6. 2018年高教社杯全国大学生数学建模竞赛B题解题思路

    题目 先贴下B题的题目吧 问题B    智能RGV的动态调度策略 图1是一个智能加工系统的示意图,由8台计算机数控机床(Computer Number Controller,CNC).1辆轨道式自动引 ...

  7. 2018年高教社杯全国大学生数学建模竞赛A题解题思路

    题目 先贴一下A的题目吧 A题   高温作业专用服装设计 在高温环境下工作时,人们需要穿着专用服装以避免灼伤.专用服装通常由三层织物材料构成,记为I.II.III层,其中I层与外界环境接触,III层与 ...

  8. 2021陕西省大学生网络安全技能大赛 Web ez_checkin

    web ez_checkin 进去看了一会,啥也没找到,直接上dirsearch 扫到一个index.php~,打开看一看,是php审计 <?php error_reporting(0); in ...

  9. 哈理工软件学院"兆方美迪"杯第六届程序设计大赛【高年级组】--决赛 题解

    比赛链接:http://acm-software.hrbust.edu.cn/contest.php?cid=1082 A.好SB啊真是,还以为lis-数有多少个数不一样. #include < ...

随机推荐

  1. 通过大量实战案例分解Netty中是如何解决拆包黏包问题的?

    TCP传输协议是基于数据流传输的,而基于流化的数据是没有界限的,当客户端向服务端发送数据时,可能会把一个完整的数据报文拆分成多个小报文进行发送,也可能将多个报文合并成一个大报文进行发送. 在这样的情况 ...

  2. jenkins bat删除指定路径下的文件及文件夹

    最近在用jenkins集成,生成allure测试报告,但是每次生成的allure测试报告,都是上一次执行的痕迹.比如这次我只运行了100个用例,结果显示运行2000条,上一次运行的用例,时间也涵括了上 ...

  3. 编译使用nginx

    nginx-1.18.0 ./configure --prefix=$HOME/nginx --with-http_ssl_module make -j32; make install [fangju ...

  4. [hdu7033]Typing Contest

    为了避免浮点运算,不妨将$f_{i}$​​​乘上$C=10^{2}$​​​,问题即求$\max_{S\subseteq [1,n]}\frac{\sum_{i\in S}(C^{2}-(\sum_{j ...

  5. [hiho1952]运算数

    可以发现如果将根的结果写成多项式,可以发现只需要预处理出f[i][j]表示以i为根的子树j次项有多少个,g[i]表示从n个数中选取i个数相乘的和,就可以通过\sum_{i=1}^{n}f[1][i]\ ...

  6. [noi795]保镖

    容易证明,最终方案一定是某一个排列无限循环,那么就要满足$\sum ai<=max(bi+ai)$,对所有数按照ai+bi排序后,枚举最大值,用权值线段树维护之前的ai最少要选几个 1 #inc ...

  7. 八、hive3.1.2 安装及其配置(本地模式和远程模式)

    目录 前文 hive3.1.2 安装及其配置(本地模式和远程模式) 1.下载hive包 2.修改其环境变量 3.MySQL配置 Centos7 MySQL安装步骤: 1.设置MySQL源 2.安装My ...

  8. Jmeter——变量嵌套函数使用(__V)案例分析

    jmeter版本:5.3 __V官方函数解释: (https://jmeter.apache.org/usermanual/functions.html#__V) 图1-1 解决问题:实现字符串拼接 ...

  9. CSP-S2021 被碾压记

    没啥好说的,不会 T3 这种贪心/dk,或者说我的贪心能力太拉跨导致 T3 这种基本的贪心都不会. 只能说,还好 CSP 不算省选.自爆了,根本没心情写游记. 希望大家不要因为我这次的失误而瞧不起我这 ...

  10. cat的生产应用

    web日志文件的合并 cat one.log two.log >all.log sort -k 4 all.log   按照第四列进行时间排序