hdu 1008为何不对?求大神指导!

/*#include<iostream>

using namespace std;

int main(){
int n;
while (cin >> n){
if (n == 0) break;
else if (n > 0 && n < 100){
int sum=0, max,min;
int *f = new int[n];
for (int i = 0; i < n; i++)
cin >> f[i];
max = min = f[0];
for (int i = 1; i < n; i++){
if (f[i]>max) max = f[i];
if (f[i]<min) min = f[i];
}
cout << max * 6 + (max - min) * 4 + n * 5 << endl;
}
else break;
}
return 0;
}
*/

hdu 1008为何不对?求大神指导!,布布扣,bubuko.com

时间: 2024-11-23 16:07:47

hdu 1008为何不对?求大神指导!的相关文章

新人迷茫,求大神指导

毕业快半年,工作还算稳定.但是作为新手有点迷茫,求各路大神指导. 1.工作上使用的是c#/net,web开发,想学点新东西但是因为工作上用不到怕学完就忘了,而且也怀疑学习这些新东西的价值,比如python.之前实习学过mybaties,因为换工作没用,已经忘得差不多了.才有了这种迷茫想法.也有不学东西就等着做码农的想法,怎么破. 2.程序猿有必要掌握多门语言吗?工作上大部分只会用到一种语言,多个技能多口饭,但是这个学习成本值得付出吗? 3.我不是计算机专业,对编程原理,算法,软件工程的概念都不清

?HDU 2818 Building Block 求大神讲解 (并查集)

#include <stdio.h> #include <iostream> using namespace std; int ff[30005];//ff[x]表示x的父节点 int high[30005]; int low[30005]; void ii(int n) //初始化 { int i; for(i=0;i<=n;i++) //从1开始也是错误的 { ff[i]=i; low[i] = 0; high[i] = 1; } } int dd(int x) //带路

关于成员变量和局部变量的一个小问题,求大神指导下。

public class Test{ public static void main(String[] args){ int time=0; for(int i=2;i<100;i++){ //int time=0; for(int j=1;j<i;j++){ if(i%j==0){ time+=1; } } if(time==1){ System.out.print(i+"\t"); } } } 上面的代码是求100以内的素数,我发现"int time=0;&q

2015.10.16赛码联考题解,非正确,求大神指导。

//只AC了20%.说的就是11个位置一字型排开0-10.扔硬币到这些位置,然后有个帽子可以每次移动最多一个位置,初始位置5. //思考:相当于遍历一个3叉树. #include <iostream>#include <vector>#include <cmath>using namespace std; struct coins{ int x; int T;};int main (){ int n,i,j,k; coins coins1[100000]={0}; in

求大神指导

1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title></title> 6 <script type="text/javascript"> 7 window.onload=function(){ 8 var btns=document.getElementsByTagName("butto

求大神指导思路!!!!!!!!!!!

要求: 1.R1\R2\R3分别连接不同的楼宇 A\B\C: 2.楼宇A #存在 VLAN10.VLAN20 ,VLAN30,网段为:192.168.10.0/24 网关为:192.168.20.0/24 网关为:192.168.30.0/24 #PC-1/3属于 VLAN10,自动获取IP地址: #PC-2/4属于 VLAN20,自动获取IP地址: #SW5作为 DHCP 服务器,属于 VLAN30 : #SW1与SW5的互联端口的模式为:hybrid: #VLAN10和VLAN20的网关在R

求大神指导一个小问题《关于编译器》

e259ws耸月考诠姥壹<http://weibo.com/p20180413p/230927983119457700290560?ms> zwk9uk壳钟圃讼厝俑<http://weibo.com/p20180413p/230927983164848437207040?QI> ncvhxt俸止屎匙僖奈<http://weibo.com/p20180413p/230927983071592923795456?cV> qtkq58戎谧沃驼熬橙<http://weib

求大神指导如何操作

原文地址:http://blog.51cto.com/13761938/2120563

最近在联系Django,写了个小例子网页打不开,求大神指导

settings.py """Django settings for guest project. Generated by 'django-admin startproject' using Django 2.0.7. For more information on this file, seehttps://docs.djangoproject.com/en/2.0/topics/settings/ For the full list of settings and th