文章
17
粉丝
133
获赞
4
访问
93.2k
#include<bits/stdc++.h>
using namespace std;
int temp(int i, int j){
int res = 0;
if (i < j){
res += ((j-i)*6);
res += 3;
}
else if(i > j){
res += ((i-j)*4);
res += 3;
}
else res += 3;
return res;
}
int main(){
int t;
cin >> t;
while(t>0){
int n;
cin >> n;
vector<int> a;
for(int i = 0; i < n; i++){
int ci;
cin >> ci;
a.push_back(ci);
}
int sec = 0;
sec += temp(1,a[0]);
f...
登录后发布评论
暂无评论,来抢沙发