結果

問題 No.866 レベルKの正方形
ユーザー IKyoproIKyopro
提出日時 2019-08-17 20:50:30
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 5,047 ms / 6,000 ms
コード長 1,084 bytes
コンパイル時間 997 ms
コンパイル使用メモリ 75,636 KB
実行使用メモリ 431,616 KB
最終ジャッジ日時 2024-09-25 04:54:15
合計ジャッジ時間 71,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
431,232 KB
testcase_01 AC 342 ms
431,232 KB
testcase_02 AC 334 ms
431,360 KB
testcase_03 AC 322 ms
431,360 KB
testcase_04 AC 320 ms
431,360 KB
testcase_05 AC 327 ms
431,232 KB
testcase_06 AC 328 ms
431,488 KB
testcase_07 AC 332 ms
431,360 KB
testcase_08 AC 4,852 ms
431,488 KB
testcase_09 AC 4,557 ms
431,488 KB
testcase_10 AC 4,362 ms
431,360 KB
testcase_11 AC 4,960 ms
431,360 KB
testcase_12 AC 4,494 ms
431,488 KB
testcase_13 AC 4,806 ms
431,488 KB
testcase_14 AC 4,679 ms
431,616 KB
testcase_15 AC 4,623 ms
431,360 KB
testcase_16 AC 4,731 ms
431,360 KB
testcase_17 AC 4,650 ms
431,360 KB
testcase_18 AC 4,704 ms
431,360 KB
testcase_19 AC 5,047 ms
431,360 KB
testcase_20 AC 4,729 ms
431,360 KB
testcase_21 AC 3,586 ms
431,360 KB
testcase_22 AC 327 ms
431,360 KB
testcase_23 AC 327 ms
431,232 KB
testcase_24 AC 327 ms
431,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
typedef long long ll;

int H,W,K;
vector<vector<char>> F(2001,vector<char>(2001));
vector<vector<vector<int>>> dp(26,vector<vector<int>>(2001,vector<int>(2001,-1)));

int rec(int x,int y,int c){
    if(dp[c][x][y]!=-1) return dp[c][x][y];
    if(F[x][y]-'a'==c) return dp[c][x][y] = 1;
    int res = min(H-x+1,W-y+1)+1;
    if(x!=H && y!=W) res = min(res,rec(x+1,y+1,c)+1);
    if(x!=H) res = min(res,rec(x+1,y,c)+1);
    if(y!=W) res = min(res,rec(x,y+1,c)+1);
    return dp[c][x][y] = res;
}

int main(){
    cin >> H >> W >> K;
    for(int i=1;i<=H;i++) for(int j=1;j<=W;j++) cin >> F[i][j];
    ll ans = 0;
    for(int c=0;c<26;c++){
        for(int i=1;i<=H;i++) for(int j=1;j<=W;j++) rec(i,j,c);
    }
    vector<int> A(27);
    for(int i=1;i<=H;i++) for(int j=1;j<=W;j++){
        for(int c=0;c<26;c++){
            A[c] = dp[c][i][j];
        }
        A[26] = min(H-i+1,W-j+1)+1;
        sort(A.begin(),A.end());
        ans += (ll) A[K]-A[K-1];
    }
    cout << ans << endl;
}
0