- 1、本文档共40页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
[工学]ACM简单题二
课后任务: /showproblem.php?pid=1008 Problem Description The highest building in our city has only one elevator. A request list is made up with N positive numbers. The numbers denote at which floors the elevator will stop, in specified order. It costs 6 seconds to move the elevator up one floor, and 4 seconds to move down one floor. The elevator will stay for 5 seconds at each stop.For a given request list, you are to compute the total time spent to fulfill the requests on the list. The elevator is on the 0th floor at the beginning and does not have to return to the ground floor when the requests are fulfilled. Input There are multiple test cases. Each case contains a positive integer N, followed by N positive numbers. All the numbers in the input are less than 100. A test case with N = 0 denotes the end of input. This test case is not to be processed. Output Print the total time on a single line for each test case. Sample input: 1 2 3 2 3 1 0 Sample output: 17 41 #include stdio.h int main(void) { int n, i, a[101], value, sum; while(scanf(%d,n) n!=0) { a[0] = 0; for(i = 1; i = n; i++) { scanf(%d,value); a[i]=value; } sum = n * 5; for(i = 0; i n; i++) { if(a[i]a[i+1]) sum = sum + (a[i+1]-a[i])*6; else if(a[i]a[i+1]) sum = sum + (a[i]-a[i+1])*4; } printf(%d\n, sum); } return 0; } HDOJ_1061 ?Rightmost Digit /showproblem.php?pid=1061 Problem Description Given a positive integer N, you should output the most right digit of N^N. Input The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.Each test case contains a single positive integer N(1=N=1,000,000,000). Output For each test case, you should output the rightmost digit of N^N. Sample input: 2 3 4 Sample output: 7 6 数据规模? 很大 暴力方法? 该打 基本思路? 规律 HDOJ_2035 人见人爱A^B 求A^B的最后三位数表示的整数(1=A,B=10000) 2 3 12 6
文档评论(0)