当前位置:   article > 正文

某论文的方法复现_acm论文复现

acm论文复现

原论文:
在这里插入图片描述

复现其中的:
在这里插入图片描述

#include <bits/stdc++.h>
using namespace std;
int H=5,Z=3;
double data[15][10000];
double a[15];
int tot[15];
void work(int sumH,int sumZ,int nowH,int nowZ,double nowLength) {
   
    cout<<"SUMH="<<sumH<<sumZ<<nowH<<nowZ<<nowLength<<endl;
    //现在是第nowZ层
    if (nowZ==sumZ) {
   
        tot[nowZ]++;
        data[nowZ][tot[nowZ]]=nowLength;
        return;
    }

    int lengt = tot[nowZ];
    double zhj = a[nowZ]; //zhongjianzhi
    int a=1,s=0;
    //有nowH列
    for (int i=1; i<=nowH/2+1; ++i) {
   
        s+=a;
        a++;
    }
    int tmplen;
    double l=zhj/s;
    for (int i=nowH/2+1; i>=1; --i) {
   
        double tmp=(nowH/2+1+1-i)*l;
        if (i==nowH/2+1)
            data[nowZ][i + lengt] = zhj - tmp;
        else
            data[nowZ][i + lengt
  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/煮酒与君饮/article/detail/781866
推荐阅读
相关标签
  

闽ICP备14008679号