篮球杯小白+强者

news2025/1/4 17:29:20

2. 宣读数字【算法赛】

        

        思维题,注意到完全平方数的约数是奇数个,其余都是偶数个。

	#include <bits/stdc++.h>
	using namespace std;
	#define LL long long
	#define pb push_back
	#define x first
	#define y second 
	#define int long long 
	#define endl '\n'
	const LL maxn = 4e05+7;
	const LL N = 5e05+10;
	const LL mod = 988244353;
	const int inf = 0x3f3f3f3f;
	const LL llinf = 5e18;
	typedef pair<int,int>pl;
	priority_queue<LL , vector<LL>, greater<LL> >mi;//小根堆
	priority_queue<LL> ma;//大根堆
	LL gcd(LL a, LL b){
		return b > 0 ? gcd(b , a % b) : a;
	}
	
	LL lcm(LL a , LL b){
		return a / gcd(a , b) * b;
	}
	int n , m;
	vector<int>a(N , 0);
	void init(int n){
		for(int i = 0 ; i <= n ; i ++){
			a[i] = 0;
		}
	}
	LL qpow(LL a , LL b)//快速幂
	{
		LL sum=1;
		while(b){
			if(b&1){
				sum=sum*a%mod;
			}
			a=a*a%mod;
			b>>=1;
		}
		return sum;
	}
	std::vector<int> minp, primes;
	void sieve(int n) {
	    minp.assign(n + 1, 0);
	    primes.clear();
	    
	    for (int i = 2; i <= n; i++) {
	        if (minp[i] == 0) {
	            minp[i] = i;
	            primes.push_back(i);
	        }
	        
	        for (auto p : primes) {
	            if (i * p > n) {
	                break;
	            }
	            minp[i * p] = p;
	            if (p == minp[i]) {
	                break;
	            }
	        }
	    }
	}
	
	void solve() 
	{
		cin >> n;
    	if((int)sqrt(n) * (int)sqrt(n) == n){
    		cout <<"L\n";
    	}
    	else{
    		cout <<"Q\n";
    	}
	}            
	signed main() 
	{
	    ios::sync_with_stdio(false);
	    cin.tie(0);
	    cout.tie(0);
	    cout.precision(10);
	    int t=1;
	    sieve(N); 
		cin>>t;
	    while(t--)
	    {
	    	solve();
	    }
	    return 0;
	}
	

3. 最大质因子个数【算法赛】

        贪心:用尽可能多的质数来构造这个数。

        

#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second 
#define int long long 
#define endl '\n'
const LL maxn = 4e05+7;
const LL N = 5e05+10;
const LL mod = 988244353;
const int inf = 0x3f3f3f3f;
const LL llinf = 5e18;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >mi;//小根堆
priority_queue<LL> ma;//大根堆
LL gcd(LL a, LL b){
	return b > 0 ? gcd(b , a % b) : a;
}

LL lcm(LL a , LL b){
	return a / gcd(a , b) * b;
}
int n , m;
vector<int>a(N , 0);
void init(int n){
	for(int i = 0 ; i <= n ; i ++){
		a[i] = 0;
	}
}
LL qpow(LL a , LL b)//快速幂
{
	LL sum=1;
	while(b){
		if(b&1){
			sum=sum*a%mod;
		}
		a=a*a%mod;
		b>>=1;
	}
	return sum;
}
std::vector<int> minp, primes;
void sieve(int n) {
    minp.assign(n + 1, 0);
    primes.clear();
    
    for (int i = 2; i <= n; i++) {
        if (minp[i] == 0) {
            minp[i] = i;
            primes.push_back(i);
        }
        
        for (auto p : primes) {
            if (i * p > n) {
                break;
            }
            minp[i * p] = p;
            if (p == minp[i]) {
                break;
            }
        }
    }
}

void solve() 
{
	int n;
	cin >> n;
	int cnt = 0;
	int tmp = 1;
	for(auto it : primes){
		if(n / it >= tmp){
			cnt++;
			tmp *= it;		
		}
		else{
			break;
		}
	}
	cout << cnt << endl;
}            
signed main() 
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cout.precision(10);
    int t=1;
    sieve(N); 
	cin>>t;
    while(t--)
    {
    	solve();
    }
    return 0;
}

4. 物流选址【算法赛】

        

注意到无论怎么改变,这两个数的差值不会变,因此考虑到差值的每个约数能否满足题意,记录最小值即可。

        

#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second 
#define int long long 
#define endl '\n'
const LL maxn = 4e05+7;
const LL N = 5e05+10;
const LL mod = 988244353;
const int inf = 0x3f3f3f3f;
const LL llinf = 5e18;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >mi;//小根堆
priority_queue<LL> ma;//大根堆
LL gcd(LL a, LL b){
	return b > 0 ? gcd(b , a % b) : a;
}

LL lcm(LL a , LL b){
	return a / gcd(a , b) * b;
}
int n , m;
vector<int>a(N , 0);
void init(int n){
	for(int i = 0 ; i <= n ; i ++){
		a[i] = 0;
	}
}
LL qpow(LL a , LL b)//快速幂
{
	LL sum=1;
	while(b){
		if(b&1){
			sum=sum*a%mod;
		}
		a=a*a%mod;
		b>>=1;
	}
	return sum;
}
void solve() 
{
	int n , m;
	cin >> n >> m;
	int k = m - n;
	if(k == 0 || m % n == 0){
		cout << 0 << endl;
	}
	else if(k == 1 || n >= k){
		cout << -1 << endl;
	}
	else{
		int ans = llinf;
		for(int i = 2 ; i * i <= k ; i ++){//可能的倍数
			if(k % i == 0){
				if(n % i == m % i){
					int tmpn = n + i - (n % i);
					int tmpm = m + i - (m % i);
					if(tmpm % tmpn == 0){
						ans = min(ans , i - n % i);
					}
				}
				if(n % (k / i) == m % (k / i)){
					int tmpn = n + (k / i) - (n % (k / i));
					int tmpm = m + (k / i) - (m % (k / i));
					if(tmpm % tmpn == 0){
						ans = min(ans , k / i - m % (k / i));
					}
				}
			}
		}
		int i = k;
		int tmpn = n + i - (n % i);
		int tmpm = m + i - (m % i);
		if(tmpm % tmpn == 0){
			ans = min(ans , i - n % i);
		}		
		if(ans == llinf){
			cout << -1 << endl;
		}
		else{
			cout << ans << endl;
		}
	}
}            
signed main() 
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cout.precision(10);
    int t=1;
	cin>>t;
    while(t--)
    {
    	solve();
    }
    return 0;
}

5. 小蓝的MEX问题【算法赛】

        

计数问题,对于每次询问,大于k的数全部可以选或者不选,而小于k的数至少选一个,然后可以预处理出所有的MEX取值情况,最后输出即可。

#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second 
#define int long long 
#define endl '\n'
const LL maxn = 4e05+7;
const LL N = 5e05+10;
const LL mod = 998244353;
const int inf = 0x3f3f3f3f;
const LL llinf = 5e18;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >mi;//小根堆
priority_queue<LL> ma;//大根堆
LL gcd(LL a, LL b){
	return b > 0 ? gcd(b , a % b) : a;
}

LL lcm(LL a , LL b){
	return a / gcd(a , b) * b;
}
int n , m;
vector<int>a(N , 0);
void init(int n){
	for(int i = 0 ; i <= n ; i ++){
		a[i] = 0;
	}
}
LL qpow(LL a , LL b)//快速幂
{
	LL sum=1;
	while(b){
		if(b&1){
			sum=sum*a%mod;
		}
		a=a*a%mod;
		b>>=1;
	}
	return sum;
}
void solve() 
{
	int n , m;
	cin >> n >> m;
	vector<int>cnt(n + 5 ,0);
	for(int i = 0 ; i < n ; i ++){
		cin >> a[i];
		cnt[a[i]] ++;
	}	
	int MEX = 0;
	while(cnt[MEX] > 0){
		MEX++;
	}
	int pre = 1;
	vector<int>ans(n + 5 , 0);
	int tot = n;
	for(int i = 0 ; i <= MEX ; i ++){
		tot -= cnt[i];//这些随便选
		if(i == 0){
			ans[i] = qpow(2 , tot);
			ans[i]--;
			ans[i] += mod;
			ans[i] %= mod;
		}
		else{
			ans[i] = pre * qpow(2 , tot);
			ans[i] %= mod;
		}
		pre *= ((qpow(2 , cnt[i]) - 1 + mod) % mod);
		pre %= mod;
	}
	for(int i = 0 ; i < m ; i ++){
		int x;
		cin >> x;
		cout << ans[x] << endl;
	}
}            
signed main() 
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cout.precision(10);
    int t=1;
	//cin>>t;
    while(t--)
    {
    	solve();
    }
    return 0;
}

6. 平摊购买费用【算法赛】

首先发现排序后没影响,因此先排个序,然后发现若要使得 l - f 最小,必然选取的是前y个数和后m-y个数。pre[c - y] + y * x - (pre[n] - pre[n - y] - y * x)

构建关于y的函数,发现这是一个有波谷的函数,因此考虑三分求波谷即可。

#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second 
#define int long long 
#define endl '\n'
const LL maxn = 4e05+7;
const LL N = 5e05+10;
const LL mod = 988244353;
const int inf = 0x3f3f3f3f;
const LL llinf = 5e18;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >mi;//小根堆
priority_queue<LL> ma;//大根堆
LL gcd(LL a, LL b){
	return b > 0 ? gcd(b , a % b) : a;
}

LL lcm(LL a , LL b){
	return a / gcd(a , b) * b;
}
int n , m;
vector<int>a(N , 0);
void init(int n){
	for(int i = 0 ; i <= n ; i ++){
		a[i] = 0;
	}
}
LL qpow(LL a , LL b)//快速幂
{
	LL sum=1;
	while(b){
		if(b&1){
			sum=sum*a%mod;
		}
		a=a*a%mod;
		b>>=1;
	}
	return sum;
}
void solve() 
{
	int n , m;
	cin >> n >> m;
	int a[n + 5];
	set<int>st;
	vector<int>pre(n + 5 , 0);
	for(int i = 1 ; i <= n ; i ++)
		cin >> a[i] , st.insert(a[i]);
	sort(a + 1, a + n + 1);
	for(int i = 1 ; i <= n ; i ++){
		pre[i] = pre[i - 1] + a[i];
	}
	map<int,int>mp;
	int idx = 1;
	for(auto it :st){
		mp[it] = idx++;
	}
	map<int,int>pm;
	for(int i = 1 ; i <= n ; i ++){
		int id = mp[a[i]];
		if(!pm.count(id)){
			pm[id] = i;
		}
	}
	//先找比x大的位置
	for(int i = 0 ; i < m ; i ++){
		int x , c;
		cin >> x >> c;
		auto it = st.lower_bound(x);
		if(it == st.end()){
			cout << pre[c] << endl;
		}
		else{
			int tmp = *it;
			//取前几个跟最后几个
			int ans = pre[c];
			auto check =[&] (int t){
				return pre[c - t] + t * x - (pre[n] - pre[n - t] - t * x); 
 			};
 			int l = 0 , r = c;
 			while(l < r){
 				int mid = (r - l) / 3;
 				if(r - l < 3){
 					for(int j = l ; j <= r ; j ++){
 						ans = min(ans , check(j));
 					}
 					break;
 				}
 				int m1 = l + mid;
 				int m2 = m1 + mid;
 				if(check(m1) > check(m2)){
 					l = m1;
 				}
 				else{
 					r = m2;
 				}
 			}
			cout << ans << endl;
		}
	}
}            
signed main() 
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cout.precision(10);
    int t=1;
	//cin>>t;
    while(t--)
    {
    	solve();
    }
    return 0;
}

4. 电力之城【算法赛】

观察到一次只会使得电能增加1/2,而最终总的电能是可以确定的,因此变成了一个NIM问题,每次能拿一个或两个石头,求最终谁拿走了最后的石头。

#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second 
#define endl '\n'
const LL maxn = 4e05+7;
const LL N = 5e05+10;
const LL mod = 1e09+7;
const int inf = 0x3f3f3f3f;
const LL llinf = 5e18;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >mi;//小根堆
priority_queue<LL> ma;//大根堆
LL gcd(LL a, LL b){
	return b > 0 ? gcd(b , a % b) : a;
}

LL lcm(LL a , LL b){
	return a / gcd(a , b) * b;
}
int n , m;
vector<int>a(N , 0);
void init(int n){
	for(int i = 0 ; i <= n ; i ++){
		a[i] = 0;
	}
}
void solve() 
{
	int n;
	cin >> n;
	string s;
	cin >> s;
	int cnt = 0;
	for(int i = 1 ; i < n ;i ++){
		cnt += (s[i] == s[i - 1]);
	}	
	if(cnt % 3 == 0){
		cout << "qiao\n";
	}
	else{
		cout <<"lan\n";
	}
}            
int main() 
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cout.precision(10);
    int t=1;
	cin>>t;
    while(t--)
    {
    	solve();
    }
    return 0;
}

 5. 价值共性度【算法赛】

此题类似于昆明邀请赛的E题,需要知道这么一个事实:一个长度为n的数列,前缀GCD的数量不会超过logn个,因此我们只需要维护以某个数结尾,向前能够组成多少个GCD即可,并且记录这些GCD的最左侧位置,然后暴力求答案即可。

        

#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second 
#define int long long 
#define endl '\n'
const LL maxn = 4e05+7;
const LL N = 1e6+10;
const LL mod = 988244353;
const int inf = 0x3f3f3f3f;
const LL llinf = 5e18;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >mi;//小根堆
priority_queue<LL> ma;//大根堆
LL gcd(LL a, LL b){
	return b > 0 ? gcd(b , a % b) : a;
}

LL lcm(LL a , LL b){
	return a / gcd(a , b) * b;
}
int n , m;
vector<int>a(N , 0);
void init(int n){
	for(int i = 0 ; i <= n ; i ++){
		a[i] = 0;
	}
}
LL qpow(LL a , LL b)//快速幂
{
	LL sum=1;
	while(b){
		if(b&1){
			sum=sum*a%mod;
		}
		a=a*a%mod;
		b>>=1;
	}
	return sum;
}
std::vector<int> minp, primes;
void sieve(int n) {
    minp.assign(n + 1, 0);
    primes.clear();
    
    for (int i = 2; i <= n; i++) {
        if (minp[i] == 0) {
            minp[i] = i;
            primes.push_back(i);
        }
        
        for (auto p : primes) {
            if (i * p > n) {
                break;
            }
            minp[i * p] = p;
            if (p == minp[i]) {
                break;
            }
        }
    }
}

void solve() 
{
	set< pair<int,int> >st;//前缀gcd
	set< pair<int,int> >pre;
	int n , k;
	cin >> n >> k;
	for(int i = 1 ; i <= n ; i ++){
		cin >> a[i];
	}
	vector<int>S(n + 5 , 0);
	for(int i = 1 ; i <= n ; i ++){
		S[i] = S[i - 1] + a[i];
	}
	int ans = 0;
	for(int i = 1 ; i <= n ; i ++){
		st.empty();
		set< pair<int,int> >tmp;
		tmp.insert({a[i] , i});
		for(auto it : pre){
			tmp.insert({gcd(a[i] , it.first) , it.second});
		}
    pre.clear();
		map<int,int>mp;
		for(auto it : tmp){
			if(mp.count(it.first)){
				continue;
			}
			else{
				mp[it.first] = 1;
				if(i - it.second + 1 >= k){
					ans = max(ans , it.first * (S[i] - S[it.second - 1]));
				}
				st.insert(it);
			}
		}
		swap(st , pre);
	}
	cout << ans << endl;
}            
signed main() 
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cout.precision(10);
    int t=1;
	//cin>>t;
    while(t--)
    {
    	solve();
    }
    return 0;
}

6. 小蓝的逆序对问题【算法赛】

        

(不是正解..但卡过去了)

如此复杂度,想到用根号分治来解决问题,考虑交换两数后的逆序对该如何变化,然后想办法维护每个区间的信息

        

#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second 
#define endl '\n'
const LL maxn = 4e05+7;
const LL N = 2e05+10;
const LL mod = 1e09+7;
const int inf = 0x3f3f3f3f;
const LL llinf = 5e18;
const int B = 800;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >mi;//小根堆
priority_queue<LL> ma;//大根堆
LL gcd(LL a, LL b){
    return b > 0 ? gcd(b , a % b) : a;
}

LL lcm(LL a , LL b){
    return a / gcd(a , b) * b;
}
int n , m;
vector<int>num(N , 0);
long long sum = 0;
void merge(int s1, int e1, int s2, int e2){
    vector<int> temp;
    int p1 = s1;
    int p2 = s2;
    while(p1 <= e1&&p2 <= e2){
        if(num[p1] <= num[p2]){
            temp.push_back(num[p1++]);
        }
        else{
            sum += (e1-p1+1);
            temp.push_back(num[p2++]);
        }
    }
    while(p1 <= e1){
        temp.push_back(num[p1++]);
    }
    while(p2 <= e2){
        temp.push_back(num[p2++]);
    }
    for(int i = 0;i < (int)temp.size();i++){
        num[s1+i] = temp[i];
    }
}
void mergesort(int str, int end){
    if(str < end){
        int mid = (str + end)/2;
        mergesort(str,mid);
        mergesort(mid+1,end);
        merge(str,mid,mid+1,end);
    }
} 
struct BIT{//Binary indexed Tree(树状数组)
    int n;
    vector<int> t;
    BIT(int n) : n(n) , t(n + 1 , 0){
    }
    int lowbit(int x){
        return x & -x;
    }
    void modify(int k, int v) {
        while (k <= n) {
            t[k] += v;
            k += lowbit(k);
        }
    }
    void modify(int l, int r, int v) {
        modify(l, v), modify(r + 1, -v);  // 将区间加差分为两个前缀加
    }
    int query(int k) {
        int ret = 0;
        while(k) {
            ret += t[k];
            k -= lowbit(k);
        }
        return ret;
    }
    int query(int l , int r){
        return query(r) - query(l - 1);
    }
};
int ans[500][N];
void solve() 
{
    int n , k;
    cin >> n >> k;
    vector<int>idx(n + 5 , 0);
    memset(ans , -1 , sizeof ans);
    int tot = 505;
    vector<BIT>bit;
    for(int i = 0 ; i < tot ; i ++){
        BIT tmp(N);
        bit.pb(tmp);
    }
    for(int i = 1 ; i <= n ; i ++){
        cin >> num[i];
        idx[i] = (i - 1) / B;
    }
    int a[n + 5];
    for(int i = 1 ; i <= n ; i ++){
        a[i] = num[i];
    }
    unordered_map<int,int>mp;
    set<int>st;
    for(int i = 1 ; i <= n ; i ++){
        st.insert(num[i]);
    }
    int id = 1;
    for(auto it : st){
        mp[it] = id++;
    }
    for(int i = 1 ; i <= n ; i ++){
        int id = idx[i];
        int tp = mp[a[i]];
        bit[id].modify(tp + 1, 1);
    }
    mergesort(1,n);
//    cout << bit[0].query(4) << endl;
    for(int i = 0 ; i < k; i ++){
        int l , r;
        cin >> l >> r;
        long long tmp = sum;
        int ll = idx[l] , rr = idx[r];
    //    cout << ll << " " << rr << endl;
        if(ll == rr){
            for(int i = l ; i <= r ; i ++){
                if(a[r] < a[i]){
                    tmp--;
                }
                if(a[l] > a[i]){
                    tmp--;
                }
                if(a[l] < a[i]){
                    tmp++;
                }
                if(a[r] > a[i]){
                    tmp++;
                }
            }
        }
        else{
            for(int i = ll ; i <= rr ; i ++){
                if(i == ll){
                    for(int j = l ; j <= (ll + 1) * B ; j ++){
                        if(a[r] < a[j]){
                            tmp--;
                        }
                        if(a[l] > a[j]){
                            tmp--;
                        }
                        if(a[l] < a[j]){
                            tmp++;
                        }
                        if(a[r] > a[j]){
                            tmp++;
                        }
                    }
                }
                else if(i == rr){
                    for(int j = rr * B + 1 ; j <= r ; j ++){
                        if(a[r] < a[j]){
                            tmp--;
                        }
                        if(a[l] > a[j]){
                            tmp--;
                        }
                        if(a[l] < a[j]){
                            tmp++;
                        }
                        if(a[r] > a[j]){
                            tmp++;
                        }
                    }                    
                }
                else{
                    int id1 = mp[a[r]];
                    if(ans[i][id1] != -1){
                        tmp += ans[i][id1];
                    }
                    else{
                        ans[i][id1] = bit[i].query(id1);
                           tmp += ans[i][id1];                        
                    }
                    if(ans[i][id1 + 1] != -1){
                            tmp -= B - ans[i][id1 + 1];//比a[r]大的                        
                    }
                    else{
                        ans[i][id1 + 1] = bit[i].query(id1 + 1);
                                   tmp -= B - ans[i][id1 + 1];//比a[r]大的                               
                    }
                    int id2 = mp[a[l]];
                    if(ans[i][id2] != -1){
                        tmp -= ans[i][id2];
                    }
                    else{
                        ans[i][id2] = bit[i].query(id2);
                           tmp -= ans[i][id2];                        
                    }
                    if(ans[i][id2 + 1] != -1){
                            tmp += B - ans[i][id2 + 1];//比a[r]大的                        
                    }
                    else{
                        ans[i][id2 + 1] = bit[i].query(id2 + 1);
                                   tmp += B - ans[i][id2 + 1];//比a[r]大的                               
                    }
                }
                //cout << tmp << endl;
            }
        }
        if(a[l] > a[r]) tmp++;
        if(a[l] < a[r]) tmp--;
        cout << tmp << endl;
    }
}            
signed main() 
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cout.precision(10);
    int t=1;
    //cin>>t;
    while(t--)
    {
        solve();
    }
    return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1828741.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

[240615] X-CMD 发布 v0.3.11,增加对 elvish 的支持

目录 X-CMD 发布 v0.3.11&#xff0c;增加对 elvish 的支持&#xff0c;并优化对 nushell&#xff0c;fish&#xff0c;xonsh&#xff0c;tcsh 的支持✨ co 模块 - copilot✨ elv 模块✨ hub X-CMD 发布 v0.3.11&#xff0c;增加对 elvish 的支持&#xff0c;并优化对 nushell&…

2024抖音电影奇遇夜沪上落幕,短视频宣发助力电影佳作被看见

6月14日&#xff0c;由抖音、央视电影频道联合举办的2024抖音电影奇妙夜在上海落幕。该活动以“在电影里遇见”为主题&#xff0c;邀请40个电影剧组、120多位影人嘉宾、30位抖音创作者共话光影。张艺谋、陈思诚、刘伟强、黄渤、吴镇宇、马丽、邓超、任贤齐、张家辉、倪妮、刘昊…

2078.两栋颜色不同且距离最远的房子

街上有 n 栋房子整齐地排成一列&#xff0c;每栋房子都粉刷上了漂亮的颜色。给你一个下标从 0 开始且长度为 n 的整数数组 colors &#xff0c;其中 colors[i] 表示第 i 栋房子的颜色。 返回 两栋 颜色 不同 房子之间的 最大 距离。 第 i 栋房子和第 j 栋房子之间的距离是 a…

Keil5新建工程详细讲解

一. 新建文件夹并拷贝库文件 新建project文件夹后建立4个子文件夹&#xff1a;startup&#xff0c;device&#xff0c;drivers&#xff0c;main 二. 新建mdk工程 1. 打开MDK软件&#xff0c;再点击Project->New uVision Project…新建一个工程&#xff0c;在弹出的对话框内…

MySQL日常问题-行列互换

问题 行列互换 场景1 行转换列 1、表结构和数据 /*Navicat Premium Data TransferSource Server : 本地Source Server Type : MySQLSource Server Version : 80027Source Host : localhost:3306Source Schema : schoolTarget Server Type :…

Javaweb9 AOP+案例

AOP Aspect Oriented Programming面向切片编程【就是面向特定方法变成】 SpringAOP是Spring框架的高级技术&#xff0c;旨在管理bean对象的过程中&#xff0c;主要通过底层的**动态代理机制&#xff0c;**对特定的方法进行编程 1.导入AOP依赖 2.编写AOP程序 加上Component//类…

二分查找-java代码实现(easy)

目录 一、问题描述 二、代码实现 三、刷题链接 一、问题描述 二、代码实现 import java.util.*;public class Solution {/*** 代码中的类名、方法名、参数名已经指定&#xff0c;请勿修改&#xff0c;直接返回方法规定的值即可** 如果目标值存在返回下标&#xff0c;否则返…

Digital电路仿真软件的安装

文章目录 1. Java环境的安装 2. Digital安装 3. 软件配置 1. Java环境的安装 电路仿真软件Digital是一款用于设计和仿真数字逻辑电路的工具。它可以帮助用户创建、测试和调试各种数字电路&#xff0c;提供可视化的电路编辑环境&#xff0c;使得设计过程更加直观和便捷。 D…

Apple - Cocoa Text Architecture Guide

翻译整理自&#xff1a;Cocoa Text Architecture Guide https://developer.apple.com/library/archive/documentation/TextFonts/Conceptual/CocoaTextArchitecture/Introduction/Introduction.html#//apple_ref/doc/uid/TP40009459 文章目录 一、关于 Cocoa 文本系统1、概览大…

MyBatis 的多级缓存机制是怎么样运作的?

引言&#xff1a;上周三&#xff0c;小 X 去面试一家中厂&#xff0c;其中面试官问到 MyBatis 的多级缓存机制是怎么样运行的&#xff1f;这个问题可以好好准备一下&#xff0c;很多人可能只会用 MyBatisPlus&#xff0c;简单的多表联查 SQL 语句可能都写不出来&#xff0c;更别…

MySql 各种 join

MySql 定义了很多join的方式&#xff0c;接下来我们用一个例子来讲解。 用到的表 本文用到了两个表s1,s2&#xff1a; 内外连接 测试 1 1 1.select * from s1 inner join s2 on(s1.id s2.id);&#xff1a; -------- | id | id | -------- | 3 | 3 | | 4 | 4 | --------2…

sqlite3模块的使用

1. SQLite数据库 SQLite是一个轻量级的, 基于磁盘的, 关系型的数据库管理系统(RDBMS). 它不需要一个独立的服务器进程或操作系统级别的配置. SQLite是D.Richard Hipp在2000年创建的, 并且由于其小巧, 快速, 可靠和易于使用的特性, 它在全球范围内得到了广泛的应用.以下是 SQLi…

最长回文子串问题详解

最长回文子串的问题描述&#xff1a;给出一个字符串S&#xff0c;求S的最长回文子串的长度。 针对这个问题&#xff0c;先看暴力解法&#xff1a;枚举子串的两个端点i和j&#xff0c;判断在[i,j]区间内的子串是否回文。从复杂度上来看&#xff0c;枚举端点需要&#xff0c;判断…

【招联消费金融股份】有限公司2024年5月18日【算法开发岗暑期实习】一面试经验分享

招联消费金融股份有限公司2024年5月18日面试经验分享 面试流程&#xff1a;共30多分钟&#xff0c;先3分钟自我介绍&#xff0c;然后细细介绍简历上面的论文和实习信息。问题1&#xff1a;扩散模型的noise schedule有什么研究。问题2&#xff1a;有哪些常见的数学分布问题3&…

数据结构:冒泡排序,选择排序,插入排序,希尔排序的实现分析

✨✨小新课堂开课了&#xff0c;欢迎欢迎~✨✨ &#x1f388;&#x1f388;养成好习惯&#xff0c;先赞后看哦~&#x1f388;&#x1f388; 所属专栏&#xff1a;数据结构与算法 小新的主页&#xff1a;编程版小新-CSDN博客 1.冒泡排序 1.1算法思想 冒泡排序的基本思想就是&a…

关于Java

关于Java Java语言关于并发JVM调优工具写在最后 Java语言 Java语言作为当下主流开发语言&#xff0c;其面向对象的开发模式以及一次编译多次运行&#xff0c;跨平台运行以及自动的垃圾回收机制可以说是给开发者节省了很大的时间用于逻辑功能的开发&#xff0c;那么在开发过程中…

【靶场搭建】-02- 搭建OWASP靶机

1.OWASP靶机介绍 相比较其他靶机&#xff0c;OWASP提供的环境更多&#xff0c;且包含了许多其他靶机的环境&#xff0c;属于性价比比较高的靶机了。 2.下载OWASP 访问以下地址进行下载&#xff1a; https://sourceforge.net/projects/owaspbwa/ 因为OWASP是虚拟机文件&…

C++初学者指南第一步---1. C++开发环境设置

C初学者指南第一步—1. C开发环境设置 目录 C初学者指南第一步---1. C开发环境设置1.1 工具1.1.1 代码编辑器和IDE1.1.2 Windows1.1.3 命令行界面 1.2 编译器1.2.1 gcc/g (支持Linux/Windows/MacOSX)1.2.2 clang/clang (支持Linux/Windows/MacOS)1.2.3 Microsoft Visual Studio…

Jackson的使用

一引入依赖 <!--Jackson是spring-boot-starter-json的一个依赖&#xff08;spring-boot-starter-web中包含spring-boot-starter-json&#xff09;。也就是说&#xff0c;当项目中引入spring-boot-starter-web后会自动引入spring-boot-starter-json --> <dependency&g…

vue关于:deep穿透样式的理解

情况一 子组件&#xff1a; <div class"child"><div class"test_class">test_class<div class"test1">test1<div class"test2">test2</div></div></div></div>父组件&#xff1a; …