入门组 Week 1打卡

本文介绍了两个编程题目,分别是求解数字三角形中最短路径的动态规划算法和货仓选址的贪心策略。对于数字三角形问题,通过自底向上更新每个节点的最大值来找到最短路径。而在货仓选址问题中,只需将货仓设在地址排序后的数组中心位置,以最小化所有地址到货仓的距离之和。
摘要由CSDN通过智能技术生成

数字三角形

题目链接

https://www.acwing.com/problem/content/description/900/

题解

简单DP

#include<bits/stdc++.h>
using namespace std;
int a[550][550];
int main(){
    int n;
    cin >> n;
    for(int i = 1;i <= n;i++){
        for(int j = 1;j <= i;j++){
            cin >> a[i][j];
        }
    }
    for(int i = n-1;i >= 1;i--){
        for(int j = 1;j <= i;j++){
            a[i][j] = max(a[i][j]+a[i+1][j],a[i][j] + a[i+1][j+1]);
        }
    }
    cout << a[1][1];
    return 0;
}

货仓选址

题目链接

https://www.acwing.com/problem/content/description/106/

题解

简单贪心,只需要将货仓放置放在将地址排序后的数组中心位置即可

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

const int N = 100005;
int a[N];
int main(){
    int n;
    ll s = 0;
    cin >> n;
    for(int i = 0;i < n;i++) cin >> a[i];
    sort(a,a+n);
    int x = n / 2;
    for(int i = 0;i < n;i++) s += abs(a[i] - a[x]);
    cout << s;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值