解题思路:
注意事项: 数组开大一点哦
参考代码:
#include <stdio.h> #include <iostream> #include <algorithm> using namespace std; const int maxn = 1000010; int n,cnt; int a[maxn]; bool judge(){ bool flag = true; for(int i = 0; i < n - 1; i++){ if(a[i] == a[i+1]) flag = true; else { flag = false; break; } } return flag; } int main(void){ // freopen("input4.txt","r",stdin); int max = 0; cin >> n; for(int i = 0; i < n; i++){ cin >> a[i]; } while(!judge()){ int tmp = a[0]; for(int i = 0; i < n; i++){ if(i == n-1) a[n-1] = a[n-1]/2 + tmp/2; else a[i] = a[i]/2 + a[i+1]/2; if(a[i]%2 != 0){ a[i] += 1; cnt++; } } } cout << cnt; // fclose(stdin); return 0; }
0.0分
0 人评分
C语言训练-求矩阵的两对角线上的元素之和 (C++代码)浏览:845 |
点我有惊喜!你懂得!浏览:1417 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:668 |
简单的a+b (C语言代码)浏览:564 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:400 |
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)浏览:565 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:761 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:600 |
三角形 (C语言代码)浏览:965 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:585 |