首页
C++语法
信息学奥赛算法
C++编程题解
CSP初赛
大数据技术
python语法
文章归档
关于页面
1
【算法】完全背包
2
【题解】潜水员
3
【算法】二维费用背包问题
4
【C++基础语法】memset、fill 用法
5
【题解】动规-数塔问题
Allen Best
累计撰写
192
篇文章
累计创建
2
个标签
累计收到
87
条评论
栏目
首页
C++语法
信息学奥赛算法
C++编程题解
CSP初赛
大数据技术
python语法
文章归档
关于页面
搜索
标签搜索
Linux,Hadoop
计算机基础知识
以下是
C++编程题解
相关的文章
2023-08-01
【题解】【上海】【颜文字】
#include <bits/stdc++.h>using namespace std;int main() { string s; int ans = 0; while (cin >> s) { for (int i = 2; i <
2023-08-01
11 阅读
0 评论
0 点赞
C++编程题解
2023-08-01
【题解】【上海】【二进制异或】
#include <bits/stdc++.h>using namespace std;int main() { string a, b; string s = ""; cin >> a >> b; int lena =
2023-08-01
116 阅读
0 评论
0 点赞
C++编程题解
2023-08-01
【题解】【上海】【差分求和】
#include <bits/stdc++.h>using namespace std;typedef long long ll;const int N = 5e5 + 10;ll a[N],b[N];ll sum = 0;int main(){int n;cin >> n;
2023-08-01
40 阅读
0 评论
0 点赞
C++编程题解
2023-08-01
【题解】【上海】【数轴的旅行】
#include <bits/stdc++.h>using namespace std;int n;int a[100005];int mygcd(int x,int y){//求最大公约数if (y==0) return x;return mygcd(y,x%y);}int main(
2023-08-01
37 阅读
0 评论
0 点赞
C++编程题解
2023-08-01
【题解】【上海】【兔子序列】
#include <bits/stdc++.h>using namespace std;int main() {long long a,k;long long b,c,d;cin>>a>>k;if (k>=1&&k<a){cout<
2023-08-01
60 阅读
0 评论
0 点赞
C++编程题解
2023-08-01
【题解】【上海】【先行后列】
#include <bits/stdc++.h>using namespace std;int main() {int n,m,c;cin>>n>>m>>c;int x,y;x=(c-1)/m+1;y=c%m;if (y==0){y=m;}cout&l
2023-08-01
36 阅读
0 评论
0 点赞
C++编程题解
2023-08-01
【题解】【上海】【排列排序】
#include <bits/stdc++.h>using namespace std;long long k;long long jc[105];bool b[55];//标志该数是否被使用int w;//答案是几个数字的全排列void myprint(long long s,int
2023-08-01
73 阅读
0 评论
0 点赞
C++编程题解
2023-08-01
【题解】【上海】【模糊匹配(二)】
#include <bits/stdc++.h>using namespace std;string s;string t;int main() {cin>>s>>t;int lens=s.size();int lent=t.size();for (int i=l
2023-08-01
106 阅读
0 评论
1 点赞
C++编程题解
2023-07-21
【题解】【比赛】最大回文数
#include<bits/stdc++.h>using namespace std;string s,t;int n,f=0;int main(){cin>>n;for(int i=1;i<=n;i++){cin>>s;f=0;for(int i=0;i&
2023-07-21
100 阅读
0 评论
0 点赞
C++编程题解
2023-07-21
【题解】【比赛】芯片测试
解析:1)好的芯片比坏的多。2)坏的芯片无论检查好的还是坏的,都是随机的0或1(50%)3)芯片不能检查自己,i=j时结果统一为1。第j列就是其他芯片测试j的结果,题目中说好的好芯片的数量大于坏芯片的数量,那么我们就统计j列的数字1多点还是0多点,就可以判断芯片的好坏了#include<ios
2023-07-21
67 阅读
0 评论
0 点赞
C++编程题解
3
4
5
6
7
8
9
10
11
12