C++ : map容器的超简单使用方法 摘要:解题思路:注意事项:把map容器当成正常的数组使用,区别就是内存空间可以变化,存储元素多少取决于我们需要多少我的解决这题的方法可能比较弯弯绕绕,没有那么直接参考代码:#include<bits/…… 题解列表 2025年03月05日 0 点赞 0 评论 120 浏览 评分:0.0
石头剪刀布 超简单 模拟 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"usingnamespacestd;intmain(){…… 题解列表 2025年01月05日 0 点赞 0 评论 104 浏览 评分:0.0
2839:石头剪刀布 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>;using namespace std;int main(){ int n,na,nb; cin>>n>>na…… 题解列表 2024年04月22日 0 点赞 0 评论 166 浏览 评分:9.9
石头剪刀布 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,na,nb; cin >> n >> na >>…… 题解列表 2024年03月03日 0 点赞 0 评论 196 浏览 评分:6.0
题解 2839: 石头剪刀布 摘要:先仔细读题,理解题目的含义石头剪刀布是常见的猜拳游戏。石头胜剪刀,剪刀胜布,布胜石头。如果两个人出拳一样,则不分胜负。一天,小A和小B正好在玩石头剪刀布。已知他们的出拳都是有周期性规律的,比如:“石头…… 题解列表 2023年07月19日 1 点赞 0 评论 377 浏览 评分:9.9
石头剪刀布(微详细) 摘要:“石头剪刀布”#include <bits/stdc++.h> using namespace std; int main() { int N,NA,NB,a[10000]…… 题解列表 2023年07月19日 0 点赞 0 评论 125 浏览 评分:9.9
石头剪刀布 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int n,nb,na,a[10000000],b[10000000],s…… 题解列表 2023年07月19日 0 点赞 0 评论 159 浏览 评分:9.9
2839: 石头剪刀布(百炼成钢,做了好多回才过) 摘要:解题思路:#include using namespace std; int a[1000]; int b[1000]; int n; int main() { int c,d,s…… 题解列表 2023年07月19日 0 点赞 0 评论 134 浏览 评分:6.0
2839: 石头剪刀布 摘要:解题思路:注意事项:i%na,i%nb参考代码: #include <iostream> using namespace std; int n,na,nb,a=0,b=0,A[100…… 题解列表 2023年07月19日 0 点赞 0 评论 100 浏览 评分:8.4
石头剪刀布 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ //比赛n轮,输入n ,小A的周期长度na,小B的周…… 题解列表 2023年07月18日 0 点赞 0 评论 153 浏览 评分:0.0