Submission #1624348


Source Code Expand

#include <algorithm>
#include <iostream>
#include <vector>

int main(void) {
  int N;
  std::vector<int> a;

  std::cin >> N;
  a.reserve(N);
  for (int i = 0; i < N; ++i) {
    std::cin >> a[i];
  }

  int takahashi_score, aoki_score;
  int takahashi_score_max, aoki_score_max;
  int aoki_chose_max;
  takahashi_score_max = -9999999;
  for (int takahashi_chose = 0; takahashi_chose < N; ++takahashi_chose) {
    aoki_score_max = -9999999;
    for (int aoki_chose = 0; aoki_chose < N; ++aoki_chose) {
      if (takahashi_chose == aoki_chose) continue;
      aoki_score = 0;
      for (int i = std::min(takahashi_chose, aoki_chose) + 1;
           i <= std::max(takahashi_chose, aoki_chose);
           i += 2) {
        aoki_score += a[i];
      }
      if(aoki_score_max < aoki_score) {
        aoki_chose_max = aoki_chose;
        aoki_score_max = aoki_score;
      }
    }
    takahashi_score = 0;
    for (int i = std::min(takahashi_chose, aoki_chose_max);
         i <= std::max(takahashi_chose, aoki_chose_max);
         i += 2) {
      takahashi_score += a[i];
    }
    if (takahashi_score_max < takahashi_score) {
      takahashi_score_max = takahashi_score;
    }
  }
  std::cout << takahashi_score_max << std::endl;

  return 0;
}

Submission Info

Submission Time
Task C - 数列ゲーム
User gidoichi
Language C++14 (GCC 5.4.1)
Score 100
Code Size 1289 Byte
Status AC
Exec Time 2 ms
Memory 256 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 23
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All sample-01.txt, sample-02.txt, sample-03.txt, test-01.txt, test-02.txt, test-03.txt, test-04.txt, test-05.txt, test-06.txt, test-07.txt, test-08.txt, test-09.txt, test-10.txt, test-11.txt, test-12.txt, test-13.txt, test-14.txt, test-15.txt, test-16.txt, test-17.txt, test-18.txt, test-19.txt, test-20.txt
Case Name Status Exec Time Memory
sample-01.txt AC 1 ms 256 KB
sample-02.txt AC 1 ms 256 KB
sample-03.txt AC 1 ms 256 KB
test-01.txt AC 1 ms 256 KB
test-02.txt AC 1 ms 256 KB
test-03.txt AC 1 ms 256 KB
test-04.txt AC 1 ms 256 KB
test-05.txt AC 2 ms 256 KB
test-06.txt AC 1 ms 256 KB
test-07.txt AC 1 ms 256 KB
test-08.txt AC 1 ms 256 KB
test-09.txt AC 1 ms 256 KB
test-10.txt AC 1 ms 256 KB
test-11.txt AC 1 ms 256 KB
test-12.txt AC 1 ms 256 KB
test-13.txt AC 1 ms 256 KB
test-14.txt AC 1 ms 256 KB
test-15.txt AC 1 ms 256 KB
test-16.txt AC 1 ms 256 KB
test-17.txt AC 1 ms 256 KB
test-18.txt AC 1 ms 256 KB
test-19.txt AC 1 ms 256 KB
test-20.txt AC 1 ms 256 KB