B. Make Them Equal

http://codeforces.com/contest/1154/problem/B

"写下这个题的特别之处: 我当时处理逻辑很乱;问题有点复杂,你要考虑多种情况;还有数组做指针使用的技巧”

#include
#include
#include
#include
#include
#include
using namespace std;

int a[110];
int b[110];

int main(){
    //freopen("in.txt","r",stdin);
    int n;
    scanf("%d",&n);
    for(int i=0; i

你可能感兴趣的:(C)