|
| 1 | +class Solution { |
| 2 | + public int numMusicPlaylists(int n, int goal, int k) { |
| 3 | + map = new HashMap<>(); |
| 4 | + return (int)findPlaylists(0, goal, n, k); |
| 5 | + } |
| 6 | + |
| 7 | + HashMap<Pair, Integer> map; |
| 8 | + int mod = 1000000007; |
| 9 | + |
| 10 | + public long findPlaylists(int old_songs, int goal, int n, int k) { |
| 11 | + if(goal == 0 && old_songs == n) { |
| 12 | + return 1; |
| 13 | + } |
| 14 | + |
| 15 | + if(goal == 0 || old_songs > n) { |
| 16 | + return 0; |
| 17 | + } |
| 18 | + |
| 19 | + if(map.containsKey(new Pair(old_songs, goal))) { |
| 20 | + return map.get(new Pair(old_songs, goal)); |
| 21 | + } |
| 22 | + |
| 23 | + // chossing an new_song |
| 24 | + long res = ((n - old_songs) * (findPlaylists(old_songs + 1, goal - 1, n, k) % mod)) % mod; |
| 25 | + |
| 26 | + // choose an old_songs |
| 27 | + if(old_songs > k) { |
| 28 | + res = (res + ((old_songs - k) * (findPlaylists(old_songs, goal - 1, n, k)) % mod) % mod) % mod; |
| 29 | + } |
| 30 | + |
| 31 | + map.put(new Pair(old_songs, goal), (int)res); |
| 32 | + |
| 33 | + return res; |
| 34 | + } |
| 35 | + |
| 36 | + class Pair { |
| 37 | + int a; |
| 38 | + int b; |
| 39 | + |
| 40 | + public Pair(int a, int b) { |
| 41 | + this.a = a; |
| 42 | + this.b = b; |
| 43 | + } |
| 44 | + |
| 45 | + @Override |
| 46 | + public boolean equals(Object obj) { |
| 47 | + if (this == obj) return true; |
| 48 | + if (obj == null || getClass() != obj.getClass()) return false; |
| 49 | + Pair pair = (Pair) obj; |
| 50 | + return a == pair.a && b == pair.b; |
| 51 | + } |
| 52 | + |
| 53 | + @Override |
| 54 | + public int hashCode() { |
| 55 | + return 31 * a + b; |
| 56 | + } |
| 57 | + } |
| 58 | +} |
0 commit comments