[编程入门]打印图案 摘要:```cpp #include using namespace std; int main() { cout…… 题解列表 2023年01月10日 0 点赞 0 评论 767 浏览 评分:9.9
C++ 贪心+双指针 O(N)复杂度 摘要:``````````cpp #include using namespace std; #define ll long long //纪念品分组 namespace test29 { …… 题解列表 2023年01月10日 0 点赞 0 评论 437 浏览 评分:9.9
2847: 找第一个只出现一次的字符 摘要:```cpp #include #include using namespace std; int main() { char ch[1000000],letter[26],let…… 题解列表 2023年01月10日 0 点赞 0 评论 517 浏览 评分:9.9
2177: 信息学奥赛一本通T1252-走迷宫 摘要:```cpp #include #include using namespace std; const int S=41; struct node { int x,y,l; }…… 题解列表 2023年01月10日 0 点赞 0 评论 300 浏览 评分:9.9
2923: 病人排队 摘要:```cpp #include using namespace std; typedef struct a { char m[20]; int age; }T; int…… 题解列表 2023年01月10日 0 点赞 0 评论 405 浏览 评分:9.9
2915: 接水问题 摘要:```cpp #include using namespace std; int main() { int n,m,w[10000],x[10000],s=1,max=0; …… 题解列表 2023年01月10日 0 点赞 1 评论 329 浏览 评分:7.3
1217: 换位置 摘要:```cpp #include using namespace std; int main() { int n,i; cin>>n; while(n--) {…… 题解列表 2023年01月10日 0 点赞 0 评论 419 浏览 评分:9.9
1216: 成绩转换 摘要:```cpp #include using namespace std; int main() { int n; while(cin>>n) switch(n/…… 题解列表 2023年01月10日 0 点赞 0 评论 431 浏览 评分:9.9
2254: 蓝桥杯算法提高-奥运会开幕式 摘要:```cpp #include using namespace std; int main() { int n,m,p=0; cin>>n>>m; for(int…… 题解列表 2023年01月10日 0 点赞 0 评论 281 浏览 评分:9.9
1215: 愚蠢的摄影师 摘要:```cpp #include using namespace std; int main() { int N,A[55]={1,1,2}; for(int i=3;i>N…… 题解列表 2023年01月10日 0 点赞 0 评论 360 浏览 评分:9.9