結果
問題 | No.866 レベルKの正方形 |
ユーザー | paruki |
提出日時 | 2019-08-16 22:33:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,112 bytes |
コンパイル時間 | 1,656 ms |
コンパイル使用メモリ | 167,992 KB |
実行使用メモリ | 197,408 KB |
最終ジャッジ日時 | 2024-09-22 18:37:23 |
合計ジャッジ時間 | 89,744 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 306 ms
134,904 KB |
testcase_01 | AC | 315 ms
134,912 KB |
testcase_02 | AC | 309 ms
134,784 KB |
testcase_03 | AC | 316 ms
134,912 KB |
testcase_04 | AC | 314 ms
134,784 KB |
testcase_05 | AC | 305 ms
134,940 KB |
testcase_06 | AC | 312 ms
134,784 KB |
testcase_07 | AC | 306 ms
134,784 KB |
testcase_08 | AC | 5,906 ms
197,216 KB |
testcase_09 | AC | 5,905 ms
197,208 KB |
testcase_10 | AC | 5,925 ms
197,376 KB |
testcase_11 | AC | 5,915 ms
197,248 KB |
testcase_12 | AC | 5,897 ms
197,340 KB |
testcase_13 | AC | 5,926 ms
197,180 KB |
testcase_14 | AC | 5,948 ms
197,244 KB |
testcase_15 | AC | 5,904 ms
197,328 KB |
testcase_16 | AC | 5,972 ms
197,264 KB |
testcase_17 | TLE | - |
testcase_18 | AC | 5,938 ms
197,276 KB |
testcase_19 | AC | 5,900 ms
197,408 KB |
testcase_20 | AC | 5,915 ms
197,244 KB |
testcase_21 | AC | 5,876 ms
197,180 KB |
testcase_22 | AC | 305 ms
134,884 KB |
testcase_23 | AC | 318 ms
134,784 KB |
testcase_24 | AC | 316 ms
135,040 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]; // 4294967295 // cnt: 2668667000 void solve() { int H, W, K; scanf("%d%d%d", &H, &W, &K); rep(i, 1 << 26)cnt[i] = bitcnt(i); ui ans = 0; rep(y, H) { static char s[MA]; scanf("%s", s); rep(x, W) { char c = s[x]; 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++; } } } } printf("%lld\n", (ll)ans); } int main() { //ios::sync_with_stdio(false); //cin.tie(0); //cout << fixed << setprecision(15); solve(); return 0; }