結果

問題 No.2463 ストレートフラッシュ
ユーザー 👑 NachiaNachia
提出日時 2021-05-17 23:15:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,125 bytes
コンパイル時間 7,149 ms
コンパイル使用メモリ 247,184 KB
実行使用メモリ 12,964 KB
最終ジャッジ日時 2024-06-26 14:01:29
合計ジャッジ時間 9,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 65 ms
12,784 KB
testcase_14 AC 74 ms
12,516 KB
testcase_15 AC 73 ms
12,744 KB
testcase_16 AC 78 ms
12,776 KB
testcase_17 AC 95 ms
12,688 KB
testcase_18 AC 96 ms
12,928 KB
testcase_19 AC 97 ms
12,964 KB
testcase_20 AC 97 ms
12,832 KB
testcase_21 AC 79 ms
12,832 KB
testcase_22 AC 82 ms
12,836 KB
testcase_23 AC 83 ms
12,836 KB
testcase_24 AC 81 ms
12,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"

#include <algorithm>
#include <iostream>
using namespace std;
#define rep(i,n) for(int i=0; i<(n); i++)

int N,M;
int pos[501][500]={};
int sfPos[5]={};

int solve_per_sfPos(){
  int ans=0;
  int remain=0, p=0;
  rep(i,5){
    remain+=sfPos[i]-p; p=sfPos[i]+1;
    ans+=remain/(5-i);
    remain%=(5-i);
  }
  return ans;
}

int main(){
  registerValidation();
  N = inf.readInt(5,500);
  inf.readSpace();
  M = inf.readInt(1,500);
  inf.readEoln();
  rep(n,N) rep(m,M) pos[n][m] = -1;
  rep(i,N*M){
    int n = inf.readInt(1,N);
    inf.readSpace();
    int m = inf.readInt(1,M);
    inf.readEoln();
    n--; m--;
    if(pos[n][m] != -1){
      string errmsg = string("") + "Pair of same cards found : " + 
                          "card " + vtos(pos[n][m]+1) + " and card " + vtos(i+1);
      inf.quit(_wa, errmsg.c_str());
    }
    pos[n][m]=i;
  }
  rep(i,M) pos[N][i]=pos[0][i];
  inf.readEof();

  int ans=1000000000;
  for(int ns=0; ns<=N-4; ns++) rep(m,M) {
    rep(i,5) sfPos[i]=pos[ns+i][m];
    sort(sfPos,sfPos+5);
    ans=min(ans,solve_per_sfPos());
  }
  cout<<ans<<"\n";

  return 0;
}
0