acm
mPeter126
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
杭电ACM 2021
#include <iostream>using namespace std;int Count(int a[], int num){ int r100, r50, r10, r5, r2, r1; int j, sum = 0; for(j = 0; j < num; ++j) { if(a[j]/100) { ...原创 2018-06-30 03:52:08 · 531 阅读 · 0 评论 -
杭电ACM 2015
#include <iostream>using namespace std;void Average(double aq[],int n, int m){ int x1, x2, x3, j, k; double average = 0; int sum1 = 0; x1 = n/m; x3 = m*x1; x2 = n - x3; for(...原创 2018-06-27 10:18:21 · 346 阅读 · 0 评论 -
杭电ACM 2027 统计元音
#include <iostream>#include <cstring>using namespace std;int main(){ int n; int k; while(cin >> n) { cin.get(); for(k = 0; k < n; ++k) { ...原创 2018-07-10 01:14:07 · 289 阅读 · 0 评论 -
杭电ACM 2016
排序都不需要~简单的一道水题~原创 2018-06-28 14:48:34 · 1044 阅读 · 0 评论 -
分享一个学习主席树的PPT,通俗易懂(前提是有线段树基础~)
https://wenku.baidu.com/view/a88b557b71fe910ef02df8d8.html原创 2018-08-06 19:13:54 · 274 阅读 · 0 评论
分享