第 277 场周赛(模拟+双指针模拟+哈希表+枚举)

1.模拟

class Solution {
public:
    int countElements(vector<int>& nums) {
        sort(nums.begin(), nums.end());
        int n = nums.size();
        if(n <= 2) return 0;
        if(nums[0] == nums[n - 1]) return 0;
        int ans = n - 2;
        for(int i = 1; i < n; i++){
            if(nums[i] == nums[0]) ans--;
        }
        for(int i = n - 2; i >= 0; i--){
            if(nums[i] == nums[n - 1]) ans--;
        }
        return ans;
    }
};

2.双指针模拟

class Solution {
public:
    vector<int> rearrangeArray(vector<int>& nums) {
        
        int zheng = 0, fu = 0;
        int n = nums.size();
        vector<int> ans;
        for(int i = 0; i < n; i++){
            if(nums[i] > 0){
                zheng = i;
                break;
            }
        }
        for(int i = 0; i < n; i++){
            if(nums[i] < 0){
                fu = i;
                break;
            }
        }
        //cout << zheng << " " << fu << endl;
        int need = 1;
        while(zheng < n || fu < n){
            if(need == 1){
                ans.push_back(nums[zheng]);
                zheng++;
                while(zheng < n && nums[zheng] < 0) zheng++;
                need = -1;
            }
            else{
                ans.push_back(nums[fu]);
                fu++;
                while(fu < n && nums[fu] > 0) fu++;
                need = 1;
            }
        }
        return ans;
    }
};

3.哈希表

class Solution {
public:
    vector<int> findLonely(vector<int>& nums) {
        int n = nums.size();
        vector<int> ans;
        if(n == 1) return nums;
        unordered_map<int, int> m;
        for(auto& x : nums){
            m[x]++;
        }
        for(auto x : m){
            if(x.second == 1 && !m.count(x.first - 1) && !m.count(x.first + 1)) ans.push_back(x.first);
        }
        return ans;
    }
};

4.枚举

typedef pair<int ,int> PII;
class Solution {
public:
    int ff = 0;
    int n;
    vector<vector<int>> state;
    bool check(int man, vector<int>& s){
        for(int j = 0; j < n; j++){
            if(state[man][j] != 2){
                if(state[man][j] != s[j]) return false;
            }
        } 
        return true;
    }
    
    void dfs(vector<int> s, int start, int sum){
        if(ff) return ;
        if(sum == 0){
            for(int i = 0; i < n; i++){
                if(s[i] == 1){
                    if(!check(i, s)) return;
                }
            }
            ff = 1; 
            return;
        }
        for(int i = start; i < n; i++){
            s[i] = 1;
            dfs(s, i + 1, sum - 1);
            s[i] = 0;
        }
    }
    int maximumGood(vector<vector<int>>& statements) {
        state = statements;
        n = statements.size();
        vector<int> d(n, 0);

        vector<int> s(n, 0);
        for(int nn = n; nn >= 0; nn--){
            dfs(s, 0, nn);
            if(ff == 1) return nn;
        }
        return 0;
        
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Prince_H_23

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值