結果

問題 No.1120 Strange Teacher
ユーザー IlagIlag
提出日時 2020-07-22 22:41:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 882 bytes
コンパイル時間 1,720 ms
コンパイル使用メモリ 166,604 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-22 23:30:09
合計ジャッジ時間 3,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<int, int>;
const long long INF = 1001001001;
const long long MOD = 1000000007;
const double EPS = 1e-10;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);

    ll n;
    cin>>n;
    ll a[n],b[n];
    for(int i=0;i<n;i++)cin>>a[i];
    for(int i=0;i<n;i++)cin>>b[i];
    ll diff=0;
    for(int i=0;i<n;i++)diff+=a[i]-b[i];
    if(n==2){
        if(a[0]-b[0]==b[1]-a[1])cout<<abs(a[0]-b[0])<<endl;
        else cout<<-1<<endl;
        return 0;
    }
    if(diff%(n-2)!=0){
        cout<<-1<<endl;
        return 0;
    }
    ll cnt=diff/(n-2);
    ll pls=0;
    for(int i=0;i<n;i++){
        ll d=a[i]-cnt;
        ll e=b[i]-d;
        if(e<0){
            cout<<-1<<endl;
            return 0;
        }
        pls+=e/2;
    }
    if(pls==cnt)cout<<cnt<<endl;
    else cout<<-1<<endl;
}
0