結果
問題 | No.866 レベルKの正方形 |
ユーザー | snow39 |
提出日時 | 2019-08-16 23:49:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,084 bytes |
コンパイル時間 | 785 ms |
コンパイル使用メモリ | 95,688 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-23 01:32:51 |
合計ジャッジ時間 | 5,448 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 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 | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <cmath> #include <map> #include <queue> #include <iomanip> #include <set> #define MOD 1000000007 #define mkp make_pair typedef long long ll; using namespace std; int H,W,K; string S[251]; int c[251][251]; int r[251][251][251]; int main(){ cin>>H>>W>>K; for(int i=0;i<H;i++) cin>>S[i]; for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ c[i][j]=S[i][j]-'a'; } } for(int i=H-1;i>=0;i--){ for(int j=W-1;j>=0;j--){ r[i][j][1]=(1<<(c[i][j])); int t=r[i][j][1],y=t; for(int k=2;i+k-1<H&&j+k-1<W;k++){ t|=(1<<c[i+k-1][j]); y|=(1<<c[i][j+k-1]); r[i][j][k]=t|y; r[i][j][k]|=r[i+1][j+1][k-1]; int z=__builtin_popcount(r[i][j][k]); if(z>K) break; } } } ll ans=0; for(int i=0;i<H;i++){ for(int j=0;j<W;j++){ for(int k=1;k<=min(H,W);k++){ int z=__builtin_popcount(r[i][j][k]); if(z==K) ans++; else if(z>K) break; } } } cout<<ans<<endl; return 0; }