結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | ikd |
提出日時 | 2015-11-02 11:50:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 699 bytes |
コンパイル時間 | 714 ms |
コンパイル使用メモリ | 64,784 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-09-13 07:00:46 |
合計ジャッジ時間 | 4,229 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include<iostream> #include<stdio.h> #include<vector> #include<algorithm> using namespace std; int main(){ int n; cin>> n; vector<int> a(n), b(n), wide(n); for(int i=0; i<n; i++){ cin>> a[i]>> b[i]; wide[i] = a[i]+4*b[i]; } sort(wide.begin(), wide.end()); bool flag = true; for(int i=1; i<n; i++){ if(wide[i-1]%2!=wide[i]%2){ flag = false; } } int cnt = 0; if(flag){ for(int i=0; i<n-1; i++){ while(wide[i]!=wide[n-1]){ wide[i] += 2; cnt++; } } cout<< cnt<< endl; }else{ cout<< "-1"<< endl; } return 0; }