zoukankan      html  css  js  c++  java
  • HackerRank

    Apparently it is by a backwards derivation solution. Say energy at h[i] is e, the next energy at h[i+1] is 2*e - h[i+1] => e', so backwards, e = ceil((e' + h[i + 1])/2). We assume energy is 0 at h[n-1]:

    #include <string>
    #include <iostream>
    #include <vector>
    #include <algorithm>
    #include <numeric>
    #include <queue>
    #include <unordered_map>
    #include <functional>
    using namespace std;
    
    int main()
    {
        int n; cin >> n;
        vector<int> hs(n);
        for (int i = 0; i < n; i++)
            cin >> hs[i];
    
        long long ret = ceil(hs[n - 1] / 2.0);
        for (int i = n - 2; i >= 0; i--)
            ret = ceil((hs[i] + ret) / 2.0);
    
        cout << ret << endl;
        return 0;
    }
  • 相关阅读:
    Linux的命令2
    运维书
    管理MariaDB
    MariaDB基础命令
    Linux创建桥接网络
    聚合网络
    kickstart
    VLAN原理
    进程优先和ACL
    计划任务at、crontab
  • 原文地址:https://www.cnblogs.com/tonix/p/4532359.html
Copyright © 2011-2022 走看看