結果
問題 | No.866 レベルKの正方形 |
ユーザー | Cinnamoroll |
提出日時 | 2019-08-16 22:09:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 5,628 bytes |
コンパイル時間 | 1,691 ms |
コンパイル使用メモリ | 172,184 KB |
実行使用メモリ | 421,120 KB |
最終ジャッジ日時 | 2024-09-22 16:59:13 |
合計ジャッジ時間 | 33,907 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 5,239 ms
414,192 KB |
testcase_09 | AC | 5,509 ms
414,208 KB |
testcase_10 | AC | 5,988 ms
414,152 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 5,941 ms
414,228 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 5,729 ms
414,132 KB |
testcase_16 | TLE | - |
testcase_17 | AC | 5,879 ms
414,112 KB |
testcase_18 | AC | 5,963 ms
414,340 KB |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 3 ms
7,700 KB |
ソースコード
// warm heart, wagging tail,and a smile just for you! // // ▒█████▒▒ // ██████████▒ // ▒████████████▒ // ██████████████████ // ████████████████████▒ // ▒██████████████████████▒ // ▒███████████████████████ // ▒████▒▒▒▒▒▒█████████████████▒ // ███▒▒▒▒▒▒██████████████████████▒▒▒ // ▒██▒▒███████████████████████▒▒▒▒▒██████ // ▒█████████████████████████▒▒▒▒▒▒█████████▒ // ▒█████████████████████▒▒▒▒▒▒██████████████ // ▒████ ████▒▒▒▒▒████ ████▒ // ▒█████▒ ████ ▒▒▒▒███████ ████ ██████▒ // ▒██▒▒▒▒▒ ██████ █████████ ██████ ██▒▒▒██▒ // █████████ ████████ █████████ ████████ ▒▒▒▒█████ // ▒█████████ ██████ ████████▒ ██████ █████████ // ▒██████████ ████ █████▒▒▒▒▒▒ ████ ██████████ // ████████████ ▒▒▒▒▒▒▒████████ ███████████▒ // ▒██████████▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒███████████████████████████████████▒ // ███▒▒▒▒▒▒▒▒▒▒▒▒█████████████████████████████████████████▒▒████████▒ // ▒▒▒▒▒▒▒▒▒██████████████ ███████▒▒▒▒███████████ // █████████████████████████ ███████▒▒▒██████████████▒ // █████████████████████████████ ███████▒▒▒██████████████████▒ // ██████████████████████████████████████████████████████████████████████ // ██████████████████████████████████████████████████████████████████▒ // ▒█████████████████▒▒▒▒▒▒▒██████████████████████████████████▒▒▒ // #include "bits/stdc++.h" using namespace std; #define MOD 1000000007 //#define MOD 998244353 const double EPS = 1e-9; #define INF (1LL<<60) #define D double #define fs first #define sc second //#define int long long #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define RFOR(i,a,b) for(int i = (b-1);i>=(a);--i) #define REP(i,n) FOR(i,0,(n)) #define RREP(i,n) RFOR(i,0,(n)) #define ITR(itr,mp) for(auto itr = (mp).begin(); itr != (mp).end(); ++itr) #define RITR(itr,mp) for(auto itr = (mp).rbegin(); itr != (mp).rend(); ++itr) #define range(i,a,b) ((a)<=(i) && (i)<(b)) #define debug(x) cout << #x << " = " << (x) << endl; #define SP << " " << typedef pair<int,int> P; typedef vector<int> vec; typedef vector<vector<int>> mat; int cnt[2001][2001][26] = {}; int h,w,x; bool check(int u, int v, int mid, bool up){ vec tmp(26,0); REP(i,26) tmp[i] = cnt[u+mid][v+mid][i]+cnt[u][v][i]-cnt[u+mid][v][i]-cnt[u][v+mid][i]; int sum = 0; REP(i,26) if(tmp[i]) sum++; //debug(sum); if(up) return x < sum; else return x <= sum; } signed main(){ ios::sync_with_stdio(false); cin.tie(0); cin >> h >> w >> x; vector<string> s(h); REP(i,h) cin >> s[i]; REP(i,h) REP(j,w) cnt[i+1][j+1][s[i][j]-'a']++; REP(i,h) REP(j,w+1) REP(k,26) cnt[i+1][j][k] += cnt[i][j][k]; REP(i,h+1) REP(j,w) REP(k,26) cnt[i][j+1][k] += cnt[i][j][k]; long long ans = 0; REP(i,h) REP(j,w){ int id = min(h-i,w-j)+1; int ng = 0, ok = id; while (abs(ng-ok)>1) { int mid = (ng+ok)/2; (check(i,j,mid,true)?ok:ng) = mid; } int ng2 = 0, ok2 = id; while (abs(ng2-ok2)>1) { int mid = (ng2+ok2)/2; (check(i,j,mid,false)?ok2:ng2) = mid; } ans += ok-ok2; //cout << i SP j SP ok SP ok2 << endl; } cout << ans << endl; return 0; }