Loading

摘要: A - Twice 题意 给定长度为\(n\)的序列,每次选两个索引\(i,\ j\),如果\(a_i == a_j\)并且\(i,\ j\)之前都没被选过,则答案加\(1\)。求答案最大值。 思路 模拟。 代码 点击查看代码 #include <bits/stdc++.h> using names 阅读全文
posted @ 2024-11-22 19:28 _SeiI 阅读(3) 评论(0) 推荐(0) 编辑
摘要: A - 123233 题意 给个\(6\)位数,判断是否是\(1\)个\(1\),\(2\)个\(2\),\(3\)个\(3\)。 思路 模拟。 代码 点击查看代码 #include <bits/stdc++.h> using namespace std; #define int long long 阅读全文
posted @ 2024-11-16 22:32 _SeiI 阅读(90) 评论(0) 推荐(0) 编辑
摘要: A - Cyclic 题意 输入\(3\)个连续字符\(a,b,c\),输出另外两种顺序。 思路 模拟。 代码 点击查看代码 #include<bits/stdc++.h> using namespace std; #define int long long typedef pair<int, in 阅读全文
posted @ 2024-11-09 23:39 _SeiI 阅读(117) 评论(0) 推荐(0) 编辑
摘要: A - Pairing 题意 给\(4\)个数,每次选两个数字相同的丢掉。求最大操作数。 思路 模拟。 代码 点击查看代码 #include<bits/stdc++.h> using namespace std; #define int long long typedef pair<int, int 阅读全文
posted @ 2024-11-02 21:45 _SeiI 阅读(239) 评论(2) 推荐(1) 编辑
摘要: A - Rearranging ABC 题意 给长度为\(3\)的字符串问是不是\(ABC\) 思路 模拟。 代码 点击查看代码 #include<bits/stdc++.h> using namespace std; #define int long long void solve() { int 阅读全文
posted @ 2024-11-01 21:22 _SeiI 阅读(7) 评论(0) 推荐(0) 编辑
摘要: A - Candy Button 题意 按一次按钮得到一块糖,条件是这次按按钮的时间间隔上次得到糖的时间\(\ge c\)。现在按\(n\)次按钮,已知第\(i\)次按按钮时间为\(t_i\),求得到的糖果数。 思路 模拟。 代码 点击查看代码 #include<bits/stdc++.h> usi 阅读全文
posted @ 2024-10-21 20:40 _SeiI 阅读(24) 评论(0) 推荐(0) 编辑
摘要: A - \texttt 题意 \(n\)个软件包,已知大小,可以同时下载\(k\)个,已经下载好了\(m\)个,选\(k\)个下载使得下载完后进度最大,输出已完成进度所占百分比。 思路 选最大的\(m+k\)个。 代码 点击查看代码 #include<bits/stdc++.h> using nam 阅读全文
posted @ 2024-10-12 08:34 _SeiI 阅读(32) 评论(0) 推荐(0) 编辑
摘要: A - Sekiro 题意 初始有\(n\)个金币,死了\(m\)次,死一次\(n = \lceil \frac n 2 \rceil\)。求最后的金币数。 思路 模拟。 代码 点击查看代码 #include<bits/stdc++.h> using namespace std; #define i 阅读全文
posted @ 2024-10-06 22:51 _SeiI 阅读(7) 评论(0) 推荐(0) 编辑
摘要: A - Automatic Judge 题意 \(n\)个问题,\(m\)条记录,每条记录有题号、时间、状态,第一次\(AC\)的时候计入罚时,其他每发罚\(20\)分钟。求队伍过题数和罚时。 思路 模拟。 代码 点击查看代码 #include<bits/stdc++.h> using namesp 阅读全文
posted @ 2024-10-04 22:30 _SeiI 阅读(5) 评论(0) 推荐(0) 编辑
摘要: B - Bitwise Exclusive-OR Sequence 题意 \(n\)个数,\(m\)个关系,每个关系形如 \(a_u⊕a_v=w\),表示第\(u\)个数与第\(v\)数的异或运算结果为\(w\)。求是否有这样的\(n\)个数满足所有关系要求,如果没有输出\(-1\),如果有输出所有 阅读全文
posted @ 2024-10-03 16:37 _SeiI 阅读(3) 评论(0) 推荐(0) 编辑