时间复杂度为 O(n) 且使用 {} 来初始化时会自动调用memset? 这就导致如果

for(int i = 1; i <= 1e6; i++)
	memset(f, 0, sizeof f); // f[1e6]

这样写是 O(n^2)的复杂度, 严重超时。