結果
問題 | No.866 レベルKの正方形 |
ユーザー | 👑 emthrm |
提出日時 | 2019-08-17 16:42:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,525 ms / 6,000 ms |
コード長 | 1,742 bytes |
コンパイル時間 | 1,548 ms |
コンパイル使用メモリ | 130,416 KB |
実行使用メモリ | 429,468 KB |
最終ジャッジ日時 | 2024-09-24 20:08:15 |
合計ジャッジ時間 | 33,020 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
58,748 KB |
testcase_01 | AC | 13 ms
58,756 KB |
testcase_02 | AC | 13 ms
58,752 KB |
testcase_03 | AC | 12 ms
58,872 KB |
testcase_04 | AC | 13 ms
58,760 KB |
testcase_05 | AC | 12 ms
58,752 KB |
testcase_06 | AC | 13 ms
58,872 KB |
testcase_07 | AC | 12 ms
58,744 KB |
testcase_08 | AC | 2,412 ms
429,388 KB |
testcase_09 | AC | 2,164 ms
429,240 KB |
testcase_10 | AC | 1,867 ms
429,368 KB |
testcase_11 | AC | 2,499 ms
429,348 KB |
testcase_12 | AC | 2,006 ms
429,444 KB |
testcase_13 | AC | 2,387 ms
429,348 KB |
testcase_14 | AC | 2,095 ms
429,332 KB |
testcase_15 | AC | 2,138 ms
429,376 KB |
testcase_16 | AC | 2,273 ms
429,292 KB |
testcase_17 | AC | 2,125 ms
429,216 KB |
testcase_18 | AC | 2,140 ms
429,240 KB |
testcase_19 | AC | 2,525 ms
429,388 KB |
testcase_20 | AC | 2,232 ms
429,364 KB |
testcase_21 | AC | 1,060 ms
429,468 KB |
testcase_22 | AC | 13 ms
56,928 KB |
testcase_23 | AC | 13 ms
56,676 KB |
testcase_24 | AC | 13 ms
61,084 KB |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <chrono> #define _USE_MATH_DEFINES #include <cmath> #include <cstdio> #include <cstring> #include <ctime> #include <deque> #include <functional> #include <iostream> #include <iterator> #include <map> #include <queue> #include <random> #include <set> #include <sstream> #include <string> #include <tuple> #include <utility> #include <vector> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() const int INF = 0x3f3f3f3f; const long long LINF = 0x3f3f3f3f3f3f3f3fLL; const double EPS = 1e-8; const int MOD = 1000000007; // 998244353; const int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1}; /*-------------------------------------------------*/ int dp[27][2000][2000]; int main() { cin.tie(0); ios::sync_with_stdio(false); // freopen("input.txt", "r", stdin); int h, w, K; cin >> h >> w >> K; vector<string> c(h); REP(i, h) cin >> c[i]; for (int i = h - 1; i >= 0; --i) for (int j = w - 1; j >= 0; --j) { REP(k, 27) { if (c[i][j] - 'a' == k) { dp[c[i][j] - 'a'][i][j] = 1; } else { dp[k][i][j] = min(h - i, w - j) + 1; if (i + 1 < h) dp[k][i][j] = min(dp[k][i][j], dp[k][i + 1][j] + 1); if (j + 1 < w) dp[k][i][j] = min(dp[k][i][j], dp[k][i][j + 1] + 1); if (i + 1 < h && j + 1 < w) dp[k][i][j] = min(dp[k][i][j], dp[k][i + 1][j + 1] + 1); } } } long long ans = 0; REP(i, h) REP(j, w) { vector<int> a(27); REP(k, 27) a[k] = dp[k][i][j]; sort(ALL(a)); ans += a[K] - a[K - 1]; } cout << ans << '\n'; return 0; }