結果
問題 | No.866 レベルKの正方形 |
ユーザー | ok |
提出日時 | 2019-08-18 20:31:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,663 bytes |
コンパイル時間 | 578 ms |
コンパイル使用メモリ | 74,036 KB |
実行使用メモリ | 421,632 KB |
最終ジャッジ日時 | 2024-10-01 14:27:52 |
合計ジャッジ時間 | 21,386 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | AC | 5,390 ms
414,900 KB |
testcase_09 | AC | 5,471 ms
414,980 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | AC | 5,933 ms
414,828 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 5,950 ms
415,244 KB |
testcase_15 | AC | 5,878 ms
415,348 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | AC | 5,468 ms
414,816 KB |
testcase_20 | AC | 5,168 ms
414,836 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 2 ms
6,948 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | AC | 3 ms
7,588 KB |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> using namespace std; // #define int short #define endl "\n" const long long INF = (long long)1e18; const long long MOD = (long long)1e9 + 7; string yn(bool f){return f?"Yes":"No";} string YN(bool f){return f?"YES":"NO";} const int NUM = 26; int H, W, K; int con[2005][2005][26]; string squares[2000]; int x, y; inline int check(int sz){ sz--; if(sz < 0) return 0; int y2 = y + sz, x2 = x + sz; if(y2 >= H || x2 >= W) return NUM+1; int level = 0; for(int i = 0; i < NUM; i++){ level += !!(con[y2+1][x2+1][i] - con[y2+1][x][i] - con[y][x2+1][i] + con[y][x][i]); } return level; } signed main(){ cin.tie(0); ios::sync_with_stdio(false); // cout<<fixed<<setprecision(10); long long ans = 0; cin>>H>>W>>K; for(int i = 0; i < H; i++){ cin>>squares[i]; for(int j = 0; j < W; j++){ con[i+1][j+1][squares[i][j] - 'a']++; } } for(int k = 0; k < NUM; k++){ for(int i = 0; i <= H; i++){ for(int j = 0; j <= W; j++){ con[i][j+1][k] += con[i][j][k]; if(i) con[i][j][k] += con[i-1][j][k]; } } } for(int i = 0; i < H; i++){ for(int j = 0; j < W; j++){ int h = min(H-i, W-j) + 1, l = 0, m; int a, b; x = i, y = j; while(l + 1 < h){ m = (l + h)/2; if(check(m) > K){ h = m; } else { l = m; } } a = h; h = min(H-i, W-j) + 1, l = 0; while(l + 1 < h){ m = (l + h)/2; if(!(check(m) < K)){ h = m; } else { l = m; } } b = l; ans += a - b - 1; } } cout<<ans<<endl; return 0; }