最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

CodeforcesRound#223(Div.2)A.SerejaandDima_html/css

来源:动视网 责编:小采 时间:2020-11-27 15:57:22
文档

CodeforcesRound#223(Div.2)A.SerejaandDima_html/css

CodeforcesRound#223(Div.2)A.SerejaandDima_html/css_WEB-ITnose:Sereja and Dima time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Sereja and Dima play a game. The rules of the game are very simple. The players have n cards i
推荐度:
导读CodeforcesRound#223(Div.2)A.SerejaandDima_html/css_WEB-ITnose:Sereja and Dima time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Sereja and Dima play a game. The rules of the game are very simple. The players have n cards i


Sereja and Dima

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Sereja and Dima play a game. The rules of the game are very simple. The players have n cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. During his turn a player can take one card: either the leftmost card in a row, or the rightmost one. The game ends when there is no more cards. The player who has the maximum sum of numbers on his cards by the end of the game, wins.

Sereja and Dima are being greedy. Each of them chooses the card with the larger number during his move.

Inna is a friend of Sereja and Dima. She knows which strategy the guys are using, so she wants to determine the final score, given the initial state of the game. Help her.

Input

The first line contains integer n (1?≤?n?≤?1000) ? the number of cards on the table. The second line contains space-separated numbers on the cards from left to right. The numbers on the cards are distinct integers from 1 to 1000.

Output

On a single line, print two integers. The first number is the number of Sereja's points at the end of the game, the second number is the number of Dima's points at the end of the game.

Sample test(s)

input

44 1 2 10

output

12 5

input

71 2 3 4 5 6 7

output

16 12

Note

In the first sample Sereja will take cards with numbers 10 and 2, so Sereja's sum is 12. Dima will take cards with numbers 4 and 1, so Dima's sum is 5.









解题思路:看似博弈论,其实就是个贪心。由于每次只能取最左边的或最右边的,则只需开两个指针i = n-1,j = 0,两人轮流取,每次若a[i] > a[j] , 则 i --;否则 j ++;直到i == j时,结束。






AC代码:

#include #include #include #include #include #include #include #include #include #include #include #include using namespace std;#define INF 0x7fffffffint a[1005];int main(){ #ifdef sxk freopen("in.txt","r",stdin); #endif int n; while(scanf("%d",&n)!=EOF) { for(int i=0; i>a[i]; int ans = 0, anss = 0; int t = 0; for(int i=n-1, j=0; i>=j; ){ //开两个指针i,j if(a[i] > a[j]){ if(t%2) anss += a[i]; else ans += a[i]; i --; } else{ if(t%2) anss += a[j]; else ans += a[j]; j ++; } t ++; } cout< 




文档

CodeforcesRound#223(Div.2)A.SerejaandDima_html/css

CodeforcesRound#223(Div.2)A.SerejaandDima_html/css_WEB-ITnose:Sereja and Dima time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Sereja and Dima play a game. The rules of the game are very simple. The players have n cards i
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top