結果

問題 No.599 回文かい
ユーザー FF256grhyFF256grhy
提出日時 2019-03-06 08:08:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 174 ms / 4,000 ms
コード長 2,439 bytes
コンパイル時間 1,672 ms
コンパイル使用メモリ 165,708 KB
実行使用メモリ 27,780 KB
最終ジャッジ日時 2023-09-05 19:03:05
合計ジャッジ時間 3,493 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 3 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 50 ms
21,736 KB
testcase_11 AC 27 ms
17,680 KB
testcase_12 AC 56 ms
22,004 KB
testcase_13 AC 31 ms
17,692 KB
testcase_14 AC 86 ms
25,676 KB
testcase_15 AC 103 ms
26,828 KB
testcase_16 AC 148 ms
26,280 KB
testcase_17 AC 174 ms
27,780 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,384 KB
testcase_20 AC 1 ms
4,376 KB
evil_0.txt AC 73 ms
23,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long   signed int LL;
typedef long long unsigned int LU;
#define incII(i, l, r) for(int i = (l)    ; i <= (r); ++i)
#define incID(i, l, r) for(int i = (l)    ; i <  (r); ++i)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); --i)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); --i)
#define inc(i, n)  incID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec(i, n)  decID(i, 0, n)
#define dec1(i, n) decII(i, 1, n)
#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define FI first
#define SE second
#define  ALL(v)  v.begin(),  v.end()
#define RALL(v) v.rbegin(), v.rend()
template<typename T> bool setmin  (T & a, T b) { if(b <  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmax  (T & a, T b) { if(b >  a) { a = b; return true; } else { return false; } }
template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } }
template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } }
LL mo(LL a, LL b) { assert(b > 0); a %= b; if(a < 0) { a += b; } return a; }
LL fl(LL a, LL b) { assert(b > 0); return (a > 0 ? a / b : (a - b + 1) / b); }
LL ce(LL a, LL b) { assert(b > 0); return (a < 0 ? a / b : (a + b - 1) / b); }
#define bit(b, i) (((b) >> (i)) & 1)
#define BC __builtin_popcountll
#define SC(T, v) static_cast<T>(v)
#define SI(v) SC(int, v.size())
#define SL(v) SC( LL, v.size())
#define RF(e, v) for(auto & e: v)
#define ei else if
#define UR assert(false)

// ---- ----

const int M = 5001;
bool f[M][M];
LL dp[M], MOD = 1e9 + 7;

int main() {
	string s;
	cin >> s;
	int n = SI(s);
	int h = fl(n, 2);
	
	incII(i, 0, h) {
		int j = n - i;
		inc1(k, h) {
			if(! (0 <= i - k && i + k <= h)) { break; }
			bool g = (s[i - k] == s[j - k] && s[i + k - 1] == s[j + k - 1]);
			f[i - k][i + k] = g;
			if(! g) { break; }
		}
	}
	inc(i, h) {
		int j = n - i - 1;
		incII(k, 0, h) {
			if(! (0 <= i - k && i + k < h)) { break; }
			bool g = (s[i - k] == s[j - k] && s[i + k] == s[j + k]);
			f[i - k][i + k + 1] = g;
			if(! g) { break; }
		}
	}
	
	LL ans = 0;
	dp[0] = 1;
	incII(i, 0, h) {
		inc(j, i) { if(f[j][i]) { dp[i] += dp[j]; } }
		dp[i] %= MOD;
		ans += dp[i];
	}
	ans %= MOD;
	
	cout << ans << endl;
	
	return 0;
}
0