-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGFG_FriendsPairingProblem.cpp
64 lines (57 loc) · 1.23 KB
/
GFG_FriendsPairingProblem.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
https://practice.geeksforgeeks.org/problems/friends-pairing-problem5425/1/#
Friends Pairing Problem
*/
// { Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution
{
public:
const int mod = 1e9+7;
int countFriendsPairings_(int n)
{
if(n <= 2) return n;
vector<long> sp(n+1, 0), dp(n+1, 0); //single pair, doible pair
sp[1] = 1;
sp[2] = 1;
dp[2] = 1;
for(int i=3; i<=n; i++)
{
sp[i] = (sp[i-1]+dp[i-1])%mod;
dp[i] = (sp[i-1]*(i-1)) %mod;
// cout<<sp[i]<<" "<<dp[i]<<endl;
}
return (sp[n]+dp[n]) %mod;
}
int countFriendsPairings(int n)
{
if(n <= 2) return n;
long prevsp = 1;
long sp = 1;
long dp = 1;
for(int i=3; i<=n; i++)
{
prevsp = sp;
sp = (prevsp+dp)%mod;
dp = (prevsp*(i-1))%mod;
}
return (sp+dp)%mod;
}
};
// { Driver Code Starts.
int main()
{
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
Solution ob;
cout <<ob.countFriendsPairings(n);
cout<<endl;
}
}
// } Driver Code Ends