結果

問題 No.866 レベルKの正方形
ユーザー jupirojupiro
提出日時 2020-03-13 21:22:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,962 bytes
コンパイル時間 1,254 ms
コンパイル使用メモリ 117,104 KB
実行使用メモリ 485,928 KB
最終ジャッジ日時 2024-11-22 19:18:18
合計ジャッジ時間 34,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,820 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 4 ms
6,820 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 3 ms
6,824 KB
testcase_08 AC 2,622 ms
469,888 KB
testcase_09 AC 2,066 ms
471,040 KB
testcase_10 AC 1,754 ms
457,236 KB
testcase_11 AC 2,494 ms
478,932 KB
testcase_12 AC 2,062 ms
462,356 KB
testcase_13 AC 2,515 ms
485,928 KB
testcase_14 WA -
testcase_15 AC 2,325 ms
476,200 KB
testcase_16 AC 2,290 ms
475,712 KB
testcase_17 AC 2,088 ms
476,028 KB
testcase_18 AC 2,347 ms
470,328 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 887 ms
414,304 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 5 ms
8,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1 << 28;
//constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353LL;

using namespace std;
typedef unsigned long long ull;
typedef long long ll;

bool a[26][2001][2001];
char s[2010];
int dp[26][2001][2001];

int srt[26];
int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/
	int H, W, K; scanf("%d %d %d", &H, &W, &K);
	for (int i = 0; i < 26; i++) for (int j = 0; j <= H; j++) for (int k = 0; k <= W; k++) dp[i][j][k] = min(H - j + 1, W - k + 1);
	for (int i = 0; i < H; i++) {
		scanf("%s", s);
		for (int j = 0; j < W; j++) {
			a[s[j] - 'a'][i][j] = true;
			dp[s[j] - 'a'][i][j] = 1;
		}
	}

	for (int i = 0; i < 26; i++) {
		for (int j = H - 1; j >= 0; j--) {
			for (int k = W - 1; k >= 0; k--) {
				chmin(dp[i][j][k], dp[i][j + 1][k] + 1);
				chmin(dp[i][j][k], dp[i][j][k + 1] + 1);
				chmin(dp[i][j][k], dp[i][j + 1][k + 1] + 1);
			}
		}
	}
	ll res = 0;
	for (int i = 0; i < H; i++) {
		for (int j = 0; j < W; j++) {
			for (int k = 0; k < 26; k++) {
				srt[k] = dp[k][i][j];
			}
			sort(srt, srt + 26);
			res += srt[K] - srt[K - 1];	
		}
	}
	printf("%lld\n", res);
	return 0;
	/*
		おまじないを使ったらscanfとprintf関連注意!!!!!!!!!!!!
	*/
}
0