結果

問題 No.43 野球の試合
ユーザー DialBirdDialBird
提出日時 2016-12-06 19:16:43
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,107 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 65,768 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 01:21:23
合計ジャッジ時間 1,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:53:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   53 |     scanf("%s", game_results[i]);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

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

using namespace std;

#define REP(i,first,last) for (int i=first;i<last;i++)

int N;
char game_results[6][6];
int answer = 10000;

void calc(vector<int> win_count){
  int win_0 = win_count[0];
  int rank = 1;
  sort(win_count.begin()+1, win_count.end());
  REP(i,1,6){
    if (win_count[i] > win_0 && win_count[i-1] != win_count[i]) {
      rank++;
    }
  }
  answer = (rank < answer) ? rank : answer;
}

void solve(int x, int y, vector<int> win_count){
  if (x >= N) {
    y++;
    if (y >= N) {
      return calc(win_count);
    }
    x = y;
  }
  if (game_results[y][x] == 'o') {
    win_count[y]++;
    solve(x+1, y, win_count);
  } else if (game_results[y][x] == 'x') {
    win_count[x]++;
    solve(x+1, y, win_count);
  } else {
    win_count[y]++;
    solve(x+1, y, win_count);
    win_count[y]--;
    win_count[x]++;
    solve(x+1, y, win_count);
  }
}

int main(){
  cin >> N;
  char val;
  REP(i,0,6){
    scanf("%s", game_results[i]);
  }
  vector<int> win_count(6,0);
  solve(0,0,win_count);
  cout<<answer<<endl;
}
0