結果
問題 | No.866 レベルKの正方形 |
ユーザー | kmjp |
提出日時 | 2019-08-16 21:58:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,454 bytes |
コンパイル時間 | 1,573 ms |
コンパイル使用メモリ | 168,796 KB |
実行使用メモリ | 424,624 KB |
最終ジャッジ日時 | 2024-09-22 16:29:19 |
合計ジャッジ時間 | 37,219 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
424,624 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 4,879 ms
417,772 KB |
testcase_09 | AC | 5,231 ms
417,780 KB |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | AC | 3,968 ms
417,892 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int H,W,K; string S[2020]; int C[2020][2020][26]; int num(int y,int x,int s) { int num=0,i; FOR(i,26) if(C[y+s][x+s][i]-C[y][x+s][i]-C[y+s][x][i]+C[y][x][i]>0) { num++; if(num>K) return num; if(num+(26-i)<K) return num; } return num; } void solve() { int i,j,k,l,r,x,y; string s; cin>>H>>W>>K; FOR(y,H) { cin>>S[y]; FOR(x,W) { FOR(i,26) { C[y+1][x+1][i]=C[y][x+1][i]+C[y+1][x][i]-C[y][x][i]; if(S[y][x]=='a'+i) C[y+1][x+1][i]++; } } } ll ret=0; FOR(y,H) FOR(x,W) { int L=0,R=min(H-y,W-x); if(num(y,x,R)<K) continue; if(num(y,x,R)==K) R++; for(i=11;i>=0;i--) { if(L+(1<<i)<R) { if(num(y,x,L+(1<<i))<K) L+=1<<i; } if(R-(1<<i)>L) { if(num(y,x,R-(1<<i))>K) R-=1<<i; } } ret+=R-L-1; } cout<<ret<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }