結果
問題 | No.1120 Strange Teacher |
ユーザー | ok |
提出日時 | 2020-07-22 22:34:38 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 21 ms / 1,000 ms |
コード長 | 1,274 bytes |
コンパイル時間 | 765 ms |
コンパイル使用メモリ | 82,828 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-22 23:18:44 |
合計ジャッジ時間 | 2,219 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> #include<utility> using namespace std; #define int long long #define endl "\n" constexpr long long INF = (long long)1e18; constexpr long long MOD = 1'000'000'007; struct fast_io { fast_io(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); }; } fio; signed main(){ cout<<fixed<<setprecision(10); int N; int SA = 0, SB = 0; vector<int> A, B; cin>>N; A.resize(N); B.resize(N); for(int i = 0; i < N; i++){ cin>>A[i]; SA += A[i]; } for(int i = 0; i < N; i++){ cin>>B[i]; SB += B[i]; } if(N == 2) { if(SA == SB) { cout<<abs(A[0] - B[0])<<endl; } else { cout<<-1<<endl; } } else { int con = SA - SB; if(SA >= SB && con%(N-2) == 0) { con /= N-2; bool flag = true; int con2 = 0; for(int i = 0; i < N; i++){ A[i] -= con; } for(int i = 0; i < N; i++){ if(A[i] > B[i]) { flag = false; break; } if((B[i] - A[i])%2 == 0) { con2 += (B[i] - A[i]) / 2; } else { flag = false; } } if(con2 != con) flag = false; if(flag) cout<<con<<endl; else cout<<-1<<endl; } else { cout<<-1<<endl; } } return 0; }