码迷,mamicode.com
首页 > 其他好文 > 详细

合并石子(非dp版)

时间:2020-02-01 21:23:32      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:using   acm   clu   names   i++   onclick   for   分析   com   

题:https://ac.nowcoder.com/acm/contest/4137/N

分析:注意题意,收益是a[i]*a[i+1],所以分析得,是∑∑a[i]*a[j]

技术图片
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int M=2200;
int a[M];

int main(){
    int n;
    cin>>n;
    for(int i=1;i<=n;i++)
        cin>>a[i];
    ll ans=0;
    for(int i=1;i<=n;i++){
        for(int j=i+1;j<=n;j++)
            ans+=1ll*a[i]*a[j];
    }
    cout<<ans<<endl;
    return 0;
}
View Code

 

合并石子(非dp版)

标签:using   acm   clu   names   i++   onclick   for   分析   com   

原文地址:https://www.cnblogs.com/starve/p/12250004.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!