
ACM
ACM一些题目
纯24k
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
杭电OJACM1004题 (必AC及易错点)
这道题说白的就是求最大值的升级版,大家可以使用String.h的strcmp函数#include <iostream>#include <string.h>#include<string>using namespace std;int main(){ int n; char a[1001][15]; while(cin>>n) { if(n==0) break;原创 2021-11-07 11:08:53 · 638 阅读 · 0 评论 -
杭电OJ ACM 1032题(必AC及其易错点)
这里面有一个小坑,就是你输入的两个得判断大小的,判断大小才能进行下一步的计算.#include <iostream>using namespace std;int check(int n){ int c =1; while(n!= 1) { if(n%2!=0) n = 3*n+1; else n=n/2; c++; } return c;原创 2021-11-07 11:12:16 · 448 阅读 · 0 评论 -
杭电 OJ ACM 2012题(必AC及易错点)
这里面有一个小坑,这里面并不需要判断输入两个数的范围比较的,大家不要被题目误导了.然后就是简单的求素数的问题了#include <iostream>#include <math.h>#include <stdio.h>#include <stdlib.h>using namespace std;int main(){ int x,y,k,j; int flag; while(~scanf("%d %d", &am原创 2021-11-07 11:18:45 · 372 阅读 · 0 评论 -
杭州ACM1331题 (必AC及其易错点)
#include <iostream>#include <string.h>#include<stdio.h>using namespace std;int w(int a,int b,int c);int d[25][25][25];int main(){ int a,b,c; memset(d,0,sizeof(d)); while(cin>>a>>b>>c&&(a!=-1|.原创 2021-11-07 11:05:09 · 598 阅读 · 1 评论 -
杭电OJ ACM 1034题(必AC及其易错点)
这道题还是挺难的,上代码#include<iostream>using namespace std;int isok(int candy[],int N){ int i,flag=0; for(i=N-1;i>0;i--) { if(candy[i]==candy[i-1]) flag++; } if(flag==N-1) return 0; else原创 2021-11-07 11:14:51 · 264 阅读 · 0 评论 -
杭州电子科技大学OJACM 2049题 (必AC及其易错点)
这里说的考新郎不重复,如果按照自己的理解可以需要一定的时间,但是在数学上有一个公式,错排公式D(n)=(n-1)[D(n-2)+D(n-1)],这样子的话就容易理解很多。这里说的是M队中N队找错所以这并不是完全错排,有需要用到概率问题N!/M!/(N-M)!。这里可以采用空间换时间的方法。由于数据可能很大,我们要用long long int。上代码。#include <iostream>using namespace std;int main(){ int T,n,m,i原创 2021-11-07 10:23:26 · 857 阅读 · 1 评论 -
杭电ACM2001题(必AC) AC易错点
ENTER TWO-POINT COORDINATES (X1, Y1), (X2, Y2), CALCULATE AND OUTPUT THE DISTANCE BETWEEN THE TWO POINTS.Inputthere are multiple sets of input data, each of which is a row consisting of four real numbers, representing x1, y1, x2, y2, and spaces between原创 2021-11-06 00:06:09 · 228 阅读 · 0 评论 -
杭州acm2002 (必AC及AC易错点)
先看代码 AC不成功是π的值(这里是PI)要3.1415927,是27不是26,双精度的,如果26的话是AC不成功的#include <iostream>#define PI 3.1415927using namespace std;int main(){ double v,r; while(scanf("%lf",&r)!=EOF) { v = 4*PI*r*r*r/3; printf("%.3lf\n",v)原创 2021-11-06 00:16:42 · 167 阅读 · 0 评论 -
杭电ojACM 2007题(必AC及易错点解析)
这里拿起来觉得很简单,其实有一个小坑的,其实这里是需要判断你输入的两个数字的大小的,所以做做过2006题,2007题其实就有个小陷阱的#include<stdio.h>#include<stdlib.h>int main(){ int i,j,x,y,sum1 = 0,sum2=0,t; while (scanf("%d %d",&x,&y) != EOF) { if(x>y)原创 2021-11-06 00:56:24 · 382 阅读 · 0 评论 -
杭州ACM2553题 皇后问题 (必AC及易错点)
#include <iostream>#include<math.h>#include<string.h>using namespace std;int x[15],k;int ans[15];bool place(int k){ int i=1; while(i<k) { if((x[i]==x[k])||(abs(x[i]-x[k])==abs(i-k))) return fals.原创 2021-11-07 09:58:47 · 183 阅读 · 0 评论 -
杭电ACM1032题 贴文字说明
1032The 3n + 1 problem*Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 58444 Accepted Submission(s): 21181*Problem DescriptionProblems in Computer Science are often classified as belonging to a...原创 2021-11-05 20:22:25 · 263 阅读 · 0 评论 -
杭州ACM 2005题 (必AC及易错点)
这里面大家别想太多,可以采用空间换时间的方法,直接初始化就更加容易#include<stdio.h>#include<stdlib.h>int main(){ int years, month, day; int a[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; int b[] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; while原创 2021-11-06 00:36:07 · 143 阅读 · 0 评论 -
杭电ACM2004题 (必AC及易错技巧)
#include <iostream>using namespace std;int main(){ int score; while (cin >> score) { if (score > 100 || score < 0) { cout << "Score is error!" << endl; } else .原创 2021-11-06 00:30:59 · 204 阅读 · 1 评论 -
杭州ACM1003题 (必AC及易错点)
这道题其实比较难,难的不是相加,难的是判断题目的意思,首先的得判断他这个数是不是正数,正数的话肯定是要先加上去的,然后再继续下一个.详细的可以见代码#include <iostream>using namespace std;int main(){ double a[100001],sum[100001]; int count=0; int T,max,n,r,i; while(scanf("%d",&T)!=EOF) {原创 2021-11-06 13:04:49 · 226 阅读 · 0 评论 -
杭电ACM2025题 贴易错点及题目分析
Problem Description对于输入的每个字符串,查找其中的最大字母,在该字母后面插入字符串“(max)”。Input输入数据包括多个测试实例,每个实例由一行长度不超过100的字符串组成,字符串仅由大小写字母构成。Output对于每个测试实例输出一行字符串,输出的结果是插入字符串“(max)”后的结果,如果存在多个最大的字母,就在每一个最大字母后面都插入"(max)"。Sample Inputabcdefgfedcbaxxxxx123Sample Outpu原创 2021-11-05 20:48:31 · 164 阅读 · 0 评论