当前位置:   article > 正文

2021-09-08 Atcoder5758题解_code5728718

code5728718

Atcoder5758

题目

大致题意

在这里插入图片描述

code && 思路

#include <bits/stdc++.h>

using namespace std;

const int N = 1e5 + 10;

// int num[N];

int A, B, M;
int a[N], b[N], fin[N];
int minn, ans;


void init()//初始化进行处理找到所有b的没有使用券时获得的最小值,即找到最小的a,然后再和所有的b分别相加即可
{
  minn = a[1]
  for(int i = 1; i < A; i++)
    minn = min(minn, a[i + 1]);

  for(int i = 1; i <= B; i++)
    f[i] = b[i] + minn;

  return ;
}

int main() {
//    freopen("1.txt", "r", stdin);
//    freopen("2.txt", "w", stdout);

  std::ios::sync_with_stdio(false);
  cin.tie(0);
  cout .tie(0);

  

  cin >> A >> B >> M;
  for(int i = 1; i <= A; i++) cin >> a[i];

  for(int i = 1; i <= B; i++) cin >> b[i];

  init();

  while(t--)
  {
    int x, int y, int c;

     cin >> x >> y >> c;

    f[y] = min(f[y], a[x] + b[y] - c);//f[i]保存的是选择的是第i个的微波炉时获得的组合的最小的值
  }

  ans = 0x3f3f3f;
  for(int i = 1;i <= B; i++)
    ans = min(ans, f[i]);

  cout << ans << endl;
  
  return 0;
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/506374?site
推荐阅读
相关标签
  

闽ICP备14008679号