結果
問題 | No.866 レベルKの正方形 |
ユーザー | IKyopro |
提出日時 | 2019-08-17 12:17:28 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,368 bytes |
コンパイル時間 | 1,885 ms |
コンパイル使用メモリ | 123,904 KB |
実行使用メモリ | 110,976 KB |
最終ジャッジ日時 | 2024-05-07 19:22:42 |
合計ジャッジ時間 | 10,027 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 75 ms
110,848 KB |
testcase_01 | AC | 73 ms
110,976 KB |
testcase_02 | AC | 74 ms
110,848 KB |
testcase_03 | AC | 75 ms
110,848 KB |
testcase_04 | AC | 75 ms
110,848 KB |
testcase_05 | AC | 74 ms
110,976 KB |
testcase_06 | AC | 73 ms
110,720 KB |
testcase_07 | AC | 74 ms
110,848 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 80 ms
110,848 KB |
testcase_23 | AC | 82 ms
110,720 KB |
testcase_24 | AC | 78 ms
110,720 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; typedef long long ll; vector<vector<char>> F(1001,vector<char>(1001)); vector<vector<vector<int>>> sum(26,vector<vector<int>>(1001,vector<int>(1001,0))); int calc(int x1,int y1,int x2,int y2){ int res = 0; for(int c=0;c<26;c++) res += sum[c][x2][y2]-sum[c][x1-1][y2]-sum[c][x2][y1-1]+sum[c][x1-1][y1-1]>=1; return res; } int main(){ int H,W,K; cin >> H >> W >> K; for(int i=1;i<=H;i++) for(int j=1;j<=W;j++) cin >> F[i][j]; for(char c='a';c<='z';c++){ for(int i=1;i<=H;i++) for(int j=1;j<=W;j++) if(F[i][j]==c){ sum[c-'a'][i][j]++; } for(int i=1;i<=H;i++) for(int j=1;j<=W;j++) sum[c-'a'][i][j] += sum[c-'a'][i][j-1]; for(int i=1;i<=H;i++) for(int j=1;j<=W;j++) sum[c-'a'][i][j] += sum[c-'a'][i-1][j]; } ll ans = 0; for(int i=1;i<=H;i++) for(int j=1;j<=W;j++){ ll l1 = 1,r1 = min(H-i+1,W-j+1)+1; while(l1+1<r1){ ll m = (l1+r1)/2; int cnt = 0; if(calc(i,j,i+m-1,j+m-1)<=K) l1 = m; else r1 = m; } ll l2 = 0,r2 = l1+1; while(l2+1<r2){ ll m = (l2+r2)/2; int cnt = 0; if(calc(i,j,i+m-1,j+m-1)<K) l2 = m; else r2 = m; } ans += l1-l2; } cout << ans << endl; }