【数学】C025_LC_卡牌分组(暴力枚举 / 最大公约数)

一、题目描述

In a deck of cards, each card has an integer written on it.
Return true if and only if you can choose X >= 2 such that
it is possible to split the entire deck into 1 or more groups of cards, where:

  • Each group has exactly X cards.
  • All the cards in each group have the same integer.
Example 1:
Input: [1,2,3,4,4,3,2,1]
Output: true
Explanation: Possible partition [1,1],[2,2],[3,3],[4,4]

Example 2:
Input: [1,1,1,2,2,2,3,3]
Output: false
Explanation: No possible partition.

Input: [1,1]
Output: true
Possible partition: [1,1]

Input: [1,1,2,2,2,2]
Output: true
Explanation: Possible partition  [1,1],[2,2],[2,2]

Note:
1 <= deck.length <= 10000 (牌数的上下限)
0 <= deck[i] < 10000 (牌的点数的上限)

二、题解

方法一:暴力枚举

枚举所有可能可能符合条件的 X X X(即每个组合的牌数), 根据题意得: N N%X==0 N N N N 为卡牌数),假设数字为 i i i 的牌有 C i C_i Ci 张,每组数字为 i i i 的卡则有 X 张,那么一定会有 C i % X = 0 C_i \% X = 0 Ci%X=0

class Solution {
public:
    bool hasGroupsSizeX(vector<int>& A) {
    	int n = A.size();
    	unordered_map<int, int> cnt;
    	unordered_set<int> val;
    	for (int a : A) cnt[a]++;
    	for (auto& [k, v] : cnt) val.insert(v);

    	for (int x = 2; x <= n; x++) {
    		if (n % x == 0) {
                bool flag = true;
    			for (int v : val) {
    				if (v % x != 0) {
                        flag = false;
    					break;
    				}
    			}
                if (flag)
    			    return true;
    		}
    	}
    	return false;
    }
};

复杂度分析

  • 时间复杂度: O ( N 2   l o g   l o g N ) O(N^2\ log\ logN) O(N2 log logN),其中 N N N 是卡片个数。本文不证明找到所有 N N N 的因数个数的上界是 O ( N 2   l o g   l o g N ) O(N^2\ log\ logN) O(N2 log logN)
  • 空间复杂度: O ( N ) O(N) O(N)

(2) 最大公约数

/**
 * 最大公约数,假设 数字 i 有C_i张牌,其中没堆卡牌有 X 张,那么 X 一定可以整除 C_i,
 * 求出count[i]的最大公约数是否 >= 2就可以得知,是否可按条件分组。
 * 比如deck == {1,1,1,2,2,2,3,3},最大公约数是1。不满足条件
 * deck{1,1,2,2,3,3}的gcd==2,则满足
 *
 * 执行用时 2 ms 击败了 99.56 % 的java用户
 * 内存消耗 38.8MB 击败了 91.2% 的java用户
 *  @param deck
 * @return
 */
public boolean hasGroupsSizeX2(int[] deck) {

  int[] count = new int[10000];
  for(int n : deck)
    count[n]++;

  int g = -1;
  for (int i = 0; i < count.length; i++) {
    if(count[i] > 0) {
      if(g == -1)
        g = count[i];
      else
        g = gcd(g, count[i]);
    }
  }
  return g >= 2;
}
private int gcd(int x, int y) {
  return x == 0 ? y : gcd(y%x, x);
}

复杂度分析

  • 时间复杂度: O ( N   l o g 2 N ) O(N\ log^2 N) O(N log2N)
    N),其中 N 是卡片的个数。假设数字 i i i C i C_i Ci 张,那么每次 g c d gcd gcd 操作的复杂度是 O ( l o g 2   C i ) O(log^2\ C_i) O(log2 Ci),存在更优的上界,但不在本文的考虑范围内。
  • 空间复杂度: O ( N ) O(N) O(N)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值