[传智杯]程序员节发橙子 (C++代码) 已通过-错误17%可以参考下 摘要:出现答案错误17%的时候可以考虑 判断条件是否缺失 ; 或者是 没有考虑到n是一个不超过 10^6 正整数,不能使用int ; ```cpp #include #include …… 题解列表 2020年04月11日 0 点赞 2 评论 542 浏览 评分:9.9
蓝桥杯算法提高VIP-扫雷-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; char matrix[101][101]; char ans[101][101]; char che…… 题解列表 2020年04月11日 0 点赞 0 评论 613 浏览 评分:0.0
蓝桥杯算法训练VIP-字符删除-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ string a; cin>>a; char b; ci…… 题解列表 2020年04月11日 0 点赞 0 评论 755 浏览 评分:9.9
统计字符个数-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main(){ char a[11]; cin.getline(a,11…… 题解列表 2020年04月11日 0 点赞 0 评论 918 浏览 评分:0.0
Dinner-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n; // "bowl", "knife", "fork" ,"ch…… 题解列表 2020年04月11日 0 点赞 0 评论 742 浏览 评分:0.0
蓝桥杯基础练习VIP-Sine之舞-题解(C++代码) by Zfans. 摘要:```cpp #include using namespace std; string Int_to_String(int n) { ostringstream stre…… 题解列表 2020年04月11日 0 点赞 0 评论 1271 浏览 评分:7.0
Tom数-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ string a; while(cin>>a){ stri…… 题解列表 2020年04月11日 0 点赞 0 评论 719 浏览 评分:0.0
IP判断-题解(C++代码) 摘要:```cpp #include #include using namespace std; bool pan_s(char a){ if(a>='0'&&a3){ …… 题解列表 2020年04月11日 0 点赞 0 评论 981 浏览 评分:6.0
DNA-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int a,b,c; cin>>a; while(a--){ …… 题解列表 2020年04月11日 0 点赞 0 评论 791 浏览 评分:0.0
优质题解 42.x皇后问题 (C++代码)只做最好的思路! 摘要:这题我听了老师傅的讲解,将上一题的代码略作修改即可,但又一个关键点搞不清,老师傅给出的abs(a[i]-a[j])==abs(i-j)这行代码啥意思为什么这样??后来想了半天,终于搞懂了。。。这的意思…… 题解列表 2020年04月10日 0 点赞 0 评论 1053 浏览 评分:9.9