给定一个有 n 个柱子和 k 种颜色的栅栏,找出涂漆栅栏的方法的数量,使得最多 2 个相邻的柱子具有相同的颜色。由于答案可能很大,因此取模 10^9 + 7。
例子:
Input : n = 2 k = 4
Output : 16
We have 4 colors and 2 posts.
Ways when both posts have same color : 4
Ways when both posts have diff color :
4(choices for 1st post) * 3(choices for
2nd post) = 12
Input : n = 3 k = 2
Output : 6
下图描绘了用 2 种颜色绘制 3 个帖子的 6 种可能方法:
考虑下图,其中 c、c’ 和 c” 分别是帖子 i、i-1 和 i -2 的颜色。
根据问题的约束,c = c’ = c” 是不可能同时发生的,所以要么 c’ != c 要么 c” != c 要么两者兼而有之。 c’ != c 有 k – 1 种可能性,c” != c 有 k – 1 种可能性。
diff = no of ways when color of last
two posts is different
same = no of ways when color of last
two posts is same
total ways = diff + sum
for n = 1
diff = k, same = 0
total = k
for n = 2
diff = k * (k-1) //k choices for
first post, k-1 for next
same = k //k choices for common
color of two posts
total = k + k * (k-1)
for n = 3
diff = k * (k-1)* (k-1)
//(k-1) choices for the first place
// k choices for the second place
//(k-1) choices for the third place
same = k * (k-1) * 2
// 2 is multiplied because consider two color R and B
// R R B or B R R
// B B R or R B B
c'' != c, (k-1) choices for it
Hence we deduce that,
total[i] = same[i] + diff[i]
same[i] = diff[i-1]
diff[i] = (diff[i-1] + diff[i-2]) * (k-1)
= total[i-1] * (k-1)
下面是问题的实现:
C++
// C++ program for Painting Fence Algorithm
// optimised version
#include
using namespace std;
// Returns count of ways to color k posts
long countWays(int n, int k)
{
long dp[n + 1];
memset(dp, 0, sizeof(dp));
long long mod = 1000000007;
dp[1] = k;
dp[2] = k * k;
for (int i = 3; i <= n; i++) {
dp[i] = ((k - 1) * (dp[i - 1] + dp[i - 2])) % mod;
}
return dp[n];
}
// Driver code
int main()
{
int n = 3, k = 2;
cout << countWays(n, k) << endl;
return 0;
}
Java
// Java program for Painting Fence Algorithm
import java.util.*;
class GfG {
// Returns count of ways to color k posts
// using k colors
static long countWays(int n, int k)
{
// To store results for subproblems
long dp[] = new long[n + 1];
Arrays.fill(dp, 0);
int mod = 1000000007;
// There are k ways to color first post
dp[1] = k;
// There are 0 ways for single post to
// violate (same color_ and k ways to
// not violate (different color)
int same = 0, diff = k;
// Fill for 2 posts onwards
for (int i = 2; i <= n; i++) {
// Current same is same as previous diff
same = diff;
// We always have k-1 choices for next post
diff = (int)(dp[i - 1] * (k - 1));
diff = diff % mod;
// Total choices till i.
dp[i] = (same + diff) % mod;
}
return dp[n];
}
// Driver code
public static void main(String[] args)
{
int n = 3, k = 2;
System.out.println(countWays(n, k));
}
}
// This code contributed by Rajput-Ji
Python3
# Python3 program for Painting Fence Algorithm
# optimised version
# Returns count of ways to color k posts
def countWays(n, k):
dp = [0] * (n + 1)
total = k
mod = 1000000007
dp[1] = k
dp[2] = k * k
for i in range(3,n+1):
dp[i] = ((k - 1) * (dp[i - 1] + dp[i - 2])) % mod
return dp[n]
# Driver code
n = 3
k = 2
print(countWays(n, k))
# This code is contributed by shubhamsingh10
C#
// C# program for Painting Fence Algorithm
using System;
public class GFG
{
// Returns count of ways to color k posts
// using k colors
static long countWays(int n, int k)
{
// To store results for subproblems
long[] dp = new long[n + 1];
Array.Fill(dp, 0);
int mod = 1000000007;
// There are k ways to color first post
dp[1] = k;
// There are 0 ways for single post to
// violate (same color_ and k ways to
// not violate (different color)
int same = 0, diff = k;
// Fill for 2 posts onwards
for (int i = 2; i <= n; i++)
{
// Current same is same as previous diff
same = diff;
// We always have k-1 choices for next post
diff = (int)(dp[i - 1] * (k - 1));
diff = diff % mod;
// Total choices till i.
dp[i] = (same + diff) % mod;
}
return dp[n];
}
// Driver code
static public void Main ()
{
int n = 3, k = 2;
Console.WriteLine(countWays(n, k));
}
}
// This code is contributed by avanitrachhadiya2155
Javascript
C++
// C++ program for Painting Fence Algorithm
#include
using namespace std;
// Returns count of ways to color k posts
// using k colors
long countWays(int n, int k)
{
// There are k ways to color first post
long total = k;
int mod = 1000000007;
// There are 0 ways for single post to
// violate (same color) and k ways to
// not violate (different color)
int same = 0, diff = k;
// Fill for 2 posts onwards
for (int i = 2; i <= n; i++) {
// Current same is same as previous diff
same = diff;
// We always have k-1 choices for next post
diff = total * (k - 1);
diff = diff % mod;
// Total choices till i.
total = (same + diff) % mod;
}
return total;
}
// Driver code
int main()
{
int n = 3, k = 2;
cout << countWays(n, k) << endl;
return 0;
}
Java
// Java program for Painting Fence Algorithm
class GFG {
// Returns count of ways to color k posts
// using k colors
static long countWays(int n, int k)
{
// There are k ways to color first post
long total = k;
int mod = 1000000007;
// There are 0 ways for single post to
// violate (same color_ and k ways to
// not violate (different color)
int same = 0, diff = k;
// Fill for 2 posts onwards
for (int i = 2; i <= n; i++) {
// Current same is same as previous diff
same = diff;
// We always have k-1 choices for next post
diff = (int)total * (k - 1);
diff = diff % mod;
// Total choices till i.
total = (same + diff) % mod;
}
return total;
}
// Driver code
public static void main(String[] args)
{
int n = 3, k = 2;
System.out.println(countWays(n, k));
}
}
// This code is contributed by Mukul Singh
Python3
# Python3 program for Painting
# Fence Algorithm
# Returns count of ways to color
# k posts using k colors
def countWays(n, k) :
# There are k ways to color first post
total = k
mod = 1000000007
# There are 0 ways for single post to
# violate (same color_ and k ways to
# not violate (different color)
same, diff = 0, k
# Fill for 2 posts onwards
for i in range(2, n + 1) :
# Current same is same as
# previous diff
same = diff
# We always have k-1 choices
# for next post
diff = total * (k - 1)
diff = diff % mod
# Total choices till i.
total = (same + diff) % mod
return total
# Driver code
if __name__ == "__main__" :
n, k = 3, 2
print(countWays(n, k))
# This code is contributed by Ryuga
C#
// C# program for Painting Fence Algorithm
using System;
class GFG {
// Returns count of ways to color k posts
// using k colors
static long countWays(int n, int k)
{
// There are k ways to color first post
long total = k;
int mod = 1000000007;
// There are 0 ways for single post to
// violate (same color_ and k ways to
// not violate (different color)
long same = 0, diff = k;
// Fill for 2 posts onwards
for (int i = 2; i <= n; i++) {
// Current same is same as previous diff
same = diff;
// We always have k-1 choices for next post
diff = total * (k - 1);
diff = diff % mod;
// Total choices till i.
total = (same + diff) % mod;
}
return total;
}
// Driver code
static void Main()
{
int n = 3, k = 2;
Console.Write(countWays(n, k));
}
}
// This code is contributed by DrRoot_
PHP
Javascript
输出:
6
空间优化:
我们可以优化上述解决方案以使用一个变量而不是一个表。
下面是问题的实现:
C++
// C++ program for Painting Fence Algorithm
#include
using namespace std;
// Returns count of ways to color k posts
// using k colors
long countWays(int n, int k)
{
// There are k ways to color first post
long total = k;
int mod = 1000000007;
// There are 0 ways for single post to
// violate (same color) and k ways to
// not violate (different color)
int same = 0, diff = k;
// Fill for 2 posts onwards
for (int i = 2; i <= n; i++) {
// Current same is same as previous diff
same = diff;
// We always have k-1 choices for next post
diff = total * (k - 1);
diff = diff % mod;
// Total choices till i.
total = (same + diff) % mod;
}
return total;
}
// Driver code
int main()
{
int n = 3, k = 2;
cout << countWays(n, k) << endl;
return 0;
}
Java
// Java program for Painting Fence Algorithm
class GFG {
// Returns count of ways to color k posts
// using k colors
static long countWays(int n, int k)
{
// There are k ways to color first post
long total = k;
int mod = 1000000007;
// There are 0 ways for single post to
// violate (same color_ and k ways to
// not violate (different color)
int same = 0, diff = k;
// Fill for 2 posts onwards
for (int i = 2; i <= n; i++) {
// Current same is same as previous diff
same = diff;
// We always have k-1 choices for next post
diff = (int)total * (k - 1);
diff = diff % mod;
// Total choices till i.
total = (same + diff) % mod;
}
return total;
}
// Driver code
public static void main(String[] args)
{
int n = 3, k = 2;
System.out.println(countWays(n, k));
}
}
// This code is contributed by Mukul Singh
蟒蛇3
# Python3 program for Painting
# Fence Algorithm
# Returns count of ways to color
# k posts using k colors
def countWays(n, k) :
# There are k ways to color first post
total = k
mod = 1000000007
# There are 0 ways for single post to
# violate (same color_ and k ways to
# not violate (different color)
same, diff = 0, k
# Fill for 2 posts onwards
for i in range(2, n + 1) :
# Current same is same as
# previous diff
same = diff
# We always have k-1 choices
# for next post
diff = total * (k - 1)
diff = diff % mod
# Total choices till i.
total = (same + diff) % mod
return total
# Driver code
if __name__ == "__main__" :
n, k = 3, 2
print(countWays(n, k))
# This code is contributed by Ryuga
C#
// C# program for Painting Fence Algorithm
using System;
class GFG {
// Returns count of ways to color k posts
// using k colors
static long countWays(int n, int k)
{
// There are k ways to color first post
long total = k;
int mod = 1000000007;
// There are 0 ways for single post to
// violate (same color_ and k ways to
// not violate (different color)
long same = 0, diff = k;
// Fill for 2 posts onwards
for (int i = 2; i <= n; i++) {
// Current same is same as previous diff
same = diff;
// We always have k-1 choices for next post
diff = total * (k - 1);
diff = diff % mod;
// Total choices till i.
total = (same + diff) % mod;
}
return total;
}
// Driver code
static void Main()
{
int n = 3, k = 2;
Console.Write(countWays(n, k));
}
}
// This code is contributed by DrRoot_
PHP
Javascript
输出:
6
如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程和学生竞争性编程现场课程。