結果
問題 | No.866 レベルKの正方形 |
ユーザー | mkawa2 |
提出日時 | 2021-03-02 11:56:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,253 bytes |
コンパイル時間 | 2,217 ms |
コンパイル使用メモリ | 202,360 KB |
実行使用メモリ | 443,112 KB |
最終ジャッジ日時 | 2024-10-03 01:40:15 |
合計ジャッジ時間 | 16,096 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
12,188 KB |
testcase_01 | AC | 4 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 3,259 ms
442,048 KB |
testcase_09 | AC | 3,476 ms
442,344 KB |
testcase_10 | AC | 5,949 ms
442,340 KB |
testcase_11 | AC | 5,791 ms
442,868 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 5,750 ms
442,984 KB |
testcase_14 | AC | 5,661 ms
443,112 KB |
testcase_15 | AC | 4,867 ms
442,988 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (n); i++) #define all(x) (x).begin(), (x).end() using ll = long long; using pii = pair<int, int>; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vector<int>>; const int inf = 1e9; int cs[26][2005][2005]; int ld[2005][2005]; int rd[2005][2005]; int cnt(int const i,int const j,int const d){ int res=0; rep(a,26) if(cs[a][i][j]+cs[a][i+d][j+d]-cs[a][i+d][j]-cs[a][i][j+d]) res++; // cout<<i<<" "<<j<<" "<<d<<" "<<res<<" "<<endl; return res; } int main() { cin.tie(0); ios::sync_with_stdio(false); int h, w, k; cin >> h >> w >> k; rep(i, h){ string s; cin >> s; rep(j,w) cs[s[j] - 'a'][i + 1][j + 1] = 1; } rep(a, 26) { rep(i, h) rep(j, w) cs[a][i + 1][j + 1] += cs[a][i + 1][j]; rep(j, w) rep(i, h) cs[a][i + 1][j + 1] += cs[a][i][j + 1]; } ll ans = 0; rep(i, h) rep(j, w){ int l,r; l=max(0,ld[i][j]-1); r=max(0,rd[i][j]-1); while(i+l<h && j+l<w && cnt(i,j,l+1)<k) l++; r=max(l,r); while(i+r<h && j+r<w && cnt(i,j,r+1)<=k) r++; ans+=r-l; // cout<<i<<" "<<j<<" "<<l<<" "<<r<<" "<<endl; ld[i+1][j+1]=l; rd[i+1][j+1]=r; } cout << ans << endl; return 0; }