結果

問題 No.866 レベルKの正方形
ユーザー kotamanegikotamanegi
提出日時 2019-08-16 22:37:15
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,561 bytes
コンパイル時間 1,277 ms
コンパイル使用メモリ 113,888 KB
実行使用メモリ 414,324 KB
最終ジャッジ日時 2023-08-20 12:44:57
合計ジャッジ時間 9,431 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,384 KB
testcase_06 AC 2 ms
4,384 KB
testcase_07 AC 2 ms
4,384 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

/*

This Submission is to determine how many 120/240 min const. delivery point there are.

//info
120 req. steps <= 5

test_case 1,6 == 50 delivery point
		 2,3,4,5,7 == 80 delivery point
				8,9 == 90 delivery point
				10 > 100 delivery point
*/
#define  _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream>
#include <random>
#include<map>
#include <iomanip>
#include <time.h>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
#include <cassert>
#include<fstream>
#include <unordered_map>
#include <cstdlib>
#include <complex>
#include <cctype>
#include <bitset>
using namespace std;
typedef string::const_iterator State;
#define Ma_PI 3.141592653589793
#define eps 0.00000001
#define LONG_INF 1e18
#define GOLD 1.61803398874989484820458
#define MAX_MOD 1000000007
#define MOD 1000000007
#define seg_size 262144
#define REP(a,b) for(long long a = 0;a < b;++a)

unsigned long xor128() {
	static unsigned long x = time(NULL), y = 362436069, z = 521288629, w = 88675123;
	unsigned long t = (x ^ (x << 11));
	x = y; y = z; z = w;
	return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)));
}
long long h, w;
int cnt[2002][2002][26];
long long func(long long k) {
	long long ans = 0;
	for (int left = 0;left < w; ++left) {
		for (int right = left + 1; right <= w; ++right) {
			long long classic[26] = {};
			long long now_cnt = 0;
			for (int j = 0; j < h; ++j) {
				REP(t, 26) {
					if (classic[t] == 0) {
						classic[t] += cnt[j][right][t] - cnt[j][left][t];
						if (classic[t] != 0)now_cnt++;
					}
					else {
						classic[t] += cnt[j][right][t] - cnt[j][left][t];
					}
				}
				if (j - (right - left) >= 0) {
					REP(t, 26) {
						if (classic[t] != 0) {
							classic[t] -= cnt[j - (right - left)][right][t] - cnt[j - (right - left)][left][t];
							if (classic[t] == 0)now_cnt--;
						}
						else {
							classic[t] -= cnt[j - (right - left)][right][t] - cnt[j - (right - left)][left][t];
						}
					}
				}
				if (j >= (right - left - 1LL)) {
					if (now_cnt == k) ans++;
				}
			}
		}
	}
	return ans;
}
int main(){
	long long k;
	cin >> h >> w >> k;
	for (int i = 0; i < h;++i) {
		string a;
		cin >> a;
		for (int q = 1; q <= w; ++q) {
			REP(j, 26) {
				cnt[i][q][j] += cnt[i][q - 1][j];
			 }
			cnt[i][q][a[q - 1] - 'a']++;
		}
	}
	cout << func(k) << endl;
	return 0;
}
0