結果

問題 No.1120 Strange Teacher
ユーザー yukudoyukudo
提出日時 2020-07-23 04:26:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 1,442 bytes
コンパイル時間 2,754 ms
コンパイル使用メモリ 168,948 KB
実行使用メモリ 4,864 KB
最終ジャッジ日時 2023-09-05 12:55:53
合計ジャッジ時間 3,884 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 4 ms
4,376 KB
testcase_04 AC 24 ms
4,652 KB
testcase_05 AC 24 ms
4,616 KB
testcase_06 AC 25 ms
4,864 KB
testcase_07 AC 24 ms
4,712 KB
testcase_08 AC 24 ms
4,668 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 24 ms
4,768 KB
testcase_11 AC 25 ms
4,624 KB
testcase_12 AC 24 ms
4,708 KB
testcase_13 AC 24 ms
4,708 KB
testcase_14 AC 24 ms
4,648 KB
testcase_15 AC 24 ms
4,592 KB
testcase_16 AC 25 ms
4,708 KB
testcase_17 AC 25 ms
4,624 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 26 ms
4,864 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 22 ms
4,624 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 1 ms
4,380 KB
testcase_28 AC 1 ms
4,504 KB
testcase_29 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define REP(i,n) for(int i=0,_n=(int)(n);i<_n;++i)
#define ALL(v) (v).begin(),(v).end()
#define CLR(t,v) memset(t,(v),sizeof(t))
template<class T1,class T2>ostream& operator<<(ostream& os,const pair<T1,T2>&a){return os<<"("<<a.first<<","<<a.second<< ")";}
template<class T>void pv(T a,T b){for(T i=a;i!=b;++i)cout<<(*i)<<" ";cout<<endl;}
template<class T>void chmin(T&a,const T&b){if(a>b)a=b;}
template<class T>void chmax(T&a,const T&b){if(a<b)a=b;}

ll nextLong() { ll x; scanf("%lld", &x); return x;}

int main2() {
  int N = nextLong();
  vector<ll> A(N), B(N);
  REP(i, N) A[i] = nextLong();
  REP(i, N) B[i] = nextLong();

  ll sumA = accumulate(ALL(A), 0LL);
  ll sumB = accumulate(ALL(B), 0LL);


  if (N == 2) {
    if (sumA != sumB) {
      cout << -1 << endl;
    } else {
      ll kk = 0;
      REP(i, N) {
        int d = abs(A[i] - B[i]);
        kk += d;
      }
      cout << kk/2 << endl;
    }
    return 0;
  }


  if ((sumA - sumB) % (N - 2) != 0) {
    cout << -1 << endl;
    return 0;
  }

  bool ng = false;
  ll k = (sumA - sumB) / (N-2);

  ll kk = 0;
  REP(i, N) {
    int d = B[i] - (A[i] - k);
    if (d < 0 || d % 2) { ng = true; }
    kk += d/2;
  }

  ng = ng || (kk != k);

  if (ng)
    cout << -1 << endl;
  else
    cout << k << endl;
  return 0;
}

int main() {

#ifdef LOCAL
  for (;!cin.eof();cin>>ws)
#endif
    main2();
  return 0;
}
0