結果
問題 | No.866 レベルKの正方形 |
ユーザー | paruki |
提出日時 | 2019-08-16 22:25:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5,945 ms / 6,000 ms |
コード長 | 2,001 bytes |
コンパイル時間 | 1,561 ms |
コンパイル使用メモリ | 169,232 KB |
実行使用メモリ | 197,264 KB |
最終ジャッジ日時 | 2024-09-22 18:15:53 |
合計ジャッジ時間 | 87,921 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 257 ms
134,536 KB |
testcase_01 | AC | 258 ms
134,908 KB |
testcase_02 | AC | 256 ms
134,556 KB |
testcase_03 | AC | 255 ms
134,700 KB |
testcase_04 | AC | 262 ms
134,608 KB |
testcase_05 | AC | 260 ms
134,776 KB |
testcase_06 | AC | 259 ms
134,732 KB |
testcase_07 | AC | 258 ms
134,608 KB |
testcase_08 | AC | 5,782 ms
196,976 KB |
testcase_09 | AC | 5,784 ms
196,932 KB |
testcase_10 | AC | 5,801 ms
196,996 KB |
testcase_11 | AC | 5,911 ms
197,160 KB |
testcase_12 | AC | 5,777 ms
197,080 KB |
testcase_13 | AC | 5,945 ms
196,948 KB |
testcase_14 | AC | 5,935 ms
197,264 KB |
testcase_15 | AC | 5,896 ms
196,972 KB |
testcase_16 | AC | 5,817 ms
197,064 KB |
testcase_17 | AC | 5,798 ms
196,968 KB |
testcase_18 | AC | 5,873 ms
196,984 KB |
testcase_19 | AC | 5,822 ms
197,128 KB |
testcase_20 | AC | 5,831 ms
197,112 KB |
testcase_21 | AC | 5,761 ms
197,052 KB |
testcase_22 | AC | 260 ms
134,624 KB |
testcase_23 | AC | 259 ms
134,716 KB |
testcase_24 | AC | 260 ms
134,852 KB |
ソースコード
#define _USE_MATH_DEFINES#include "bits/stdc++.h"using namespace std;#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))#define rep(i,j) FOR(i,0,j)#define each(x,y) for(auto &(x):(y))#define mp make_pair#define MT make_tuple#define all(x) (x).begin(),(x).end()#define debug(x) cout<<#x<<": "<<(x)<<endl#define smax(x,y) (x)=max((x),(y))#define smin(x,y) (x)=min((x),(y))#define MEM(x,y) memset((x),(y),sizeof (x))#define sz(x) (int)(x).size()#define RT returnusing ll = long long;using pii = pair<int, int>;using vi = vector<int>;using vll = vector<ll>;int bitcnt(unsigned int x) {x = (x & 0x55555555) + (x >> 1 & 0x55555555);x = (x & 0x33333333) + (x >> 2 & 0x33333333);x = (x & 0x0f0f0f0f) + (x >> 4 & 0x0f0f0f0f);x = (x & 0x00ff00ff) + (x >> 8 & 0x00ff00ff);x = (x & 0x0000ffff) + (x >> 16 & 0x0000ffff);return (int)x;}using ui = unsigned int;const int MA = 2001;ui input[MA][MA], yoko[MA][MA], tate[MA][MA], square[MA][MA];short cnt[1 << 26];// 4294967295// cnt: 2668667000void solve() {int H, W, K;cin >> H >> W >> K;rep(i, 1 << 26)cnt[i] = bitcnt(i);ui ans = 0;rep(y, H)rep(x, W) {char c;cin >> c;input[y][x] = 1u << (c - 'a');yoko[y][x] = tate[y][x] = square[y][x] = input[y][x];}if (K == 1)ans += (ui)(H * W);for (int len = 2; len <= min(H, W); ++len) {for (int y = 0; y + len <= H; ++y) {for (int x = 0; x + len <= W; ++x) {yoko[y + len - 1][x] |= input[y + len - 1][x + len - 1];tate[y][x + len - 1] |= input[y + len - 1][x + len - 1];square[y][x] |= yoko[y + len - 1][x] | tate[y][x + len - 1];if (cnt[square[y][x]] == K) {ans++;}}}}cout << ans << endl;}int main() {ios::sync_with_stdio(false);cin.tie(0);cout << fixed << setprecision(15);solve();return 0;}