主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
孙某人
2024年3月22日 18:33
围圈报数 题解:求大佬给看看,为什么超时,且只能输出一组数字
P1429
回复 3
|
赞 0
|
浏览 424
#include <iostream> #include <string.h> #include <math.h> #include <algorithm> using namespace std; /*typedef struct node{ int data; struct node *next; }node,*Lnode;*/ int main(){ int m,n; cin >> m; /*for(int j=0;j<m;j++){ scanf("%d",&n...
A1120161820
2020年3月6日 10:46
围圈报数(c++)
P1429
回复 0
|
赞 0
|
浏览 12.6k
#include<iostream> #include<vector> using namespace std; int main() { int m; cin >> m; while (m--) { int N, i; cin >> N; vector<int> vint; for (i = 1; i <= N; i++) vint.push_back(i); vector<int>::iterator itr = vint.begin(); ...
题目
围圈报数
题解数量
2
发布题解
热门题解
1
围圈报数 题解:求大佬给看看,为什么超时,且只能输出一组数字
2
围圈报数(c++)