結果
問題 | No.866 レベルKの正方形 |
ユーザー | paruki |
提出日時 | 2019-08-16 22:42:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5,332 ms / 6,000 ms |
コード長 | 2,196 bytes |
コンパイル時間 | 1,647 ms |
コンパイル使用メモリ | 168,160 KB |
実行使用メモリ | 197,144 KB |
最終ジャッジ日時 | 2024-09-22 19:04:05 |
合計ジャッジ時間 | 76,459 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 104 ms
134,656 KB |
testcase_01 | AC | 93 ms
134,760 KB |
testcase_02 | AC | 91 ms
134,772 KB |
testcase_03 | AC | 92 ms
134,676 KB |
testcase_04 | AC | 92 ms
134,668 KB |
testcase_05 | AC | 92 ms
134,596 KB |
testcase_06 | AC | 92 ms
134,576 KB |
testcase_07 | AC | 92 ms
134,568 KB |
testcase_08 | AC | 5,197 ms
197,036 KB |
testcase_09 | AC | 5,332 ms
197,144 KB |
testcase_10 | AC | 5,148 ms
197,136 KB |
testcase_11 | AC | 5,214 ms
196,984 KB |
testcase_12 | AC | 5,084 ms
197,112 KB |
testcase_13 | AC | 5,225 ms
196,992 KB |
testcase_14 | AC | 5,155 ms
197,052 KB |
testcase_15 | AC | 5,143 ms
196,964 KB |
testcase_16 | AC | 5,109 ms
197,020 KB |
testcase_17 | AC | 5,193 ms
197,112 KB |
testcase_18 | AC | 5,198 ms
196,988 KB |
testcase_19 | AC | 5,242 ms
197,120 KB |
testcase_20 | AC | 5,062 ms
197,060 KB |
testcase_21 | AC | 5,069 ms
196,936 KB |
testcase_22 | AC | 95 ms
134,528 KB |
testcase_23 | AC | 93 ms
134,640 KB |
testcase_24 | AC | 93 ms
134,912 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 return using 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], smallCnt[1 << 13]; // 4294967295 // cnt: 2668667000 void solve() { int H, W; short K; cin >> H >> W >> K; rep(i, 1 << 13)smallCnt[i] = bitcnt(i); rep(i, 1 << 13) { rep(j, 1 << 13) { int k = (i << 13) | j; cnt[k] = smallCnt[i]+ smallCnt[j]; } } 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); const int N = min(H, W); for (int len = 2; len <= N; ++len) { for (int y = 0; y <= H - len; ++y) { for (int x = 0; x <= W - len; ++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; }