結果

問題 No.2463 ストレートフラッシュ
ユーザー 👑 NachiaNachia
提出日時 2021-05-08 15:46:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 8,090 ms
コンパイル使用メモリ 246,540 KB
実行使用メモリ 12,936 KB
最終ジャッジ日時 2024-06-26 14:01:19
合計ジャッジ時間 10,633 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 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 62 ms
12,528 KB
testcase_14 AC 70 ms
12,516 KB
testcase_15 AC 69 ms
12,744 KB
testcase_16 AC 72 ms
12,648 KB
testcase_17 AC 81 ms
12,812 KB
testcase_18 AC 91 ms
12,840 KB
testcase_19 AC 91 ms
12,836 KB
testcase_20 AC 89 ms
12,840 KB
testcase_21 AC 76 ms
12,332 KB
testcase_22 AC 80 ms
12,776 KB
testcase_23 AC 80 ms
12,936 KB
testcase_24 AC 78 ms
12,636 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(i,N*M){
    int n = inf.readInt(1,N);
    inf.readSpace();
    int m = inf.readInt(1,M);
    inf.readEoln();
    n--; m--;
    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