結果
問題 | No.359 門松行列 |
ユーザー | mamekin |
提出日時 | 2016-04-17 22:49:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,180 bytes |
コンパイル時間 | 1,086 ms |
コンパイル使用メモリ | 113,884 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-04 10:42:01 |
合計ジャッジ時間 | 1,731 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> using namespace std; bool checkKadomatsu(const vector<int>& a) { if(a[0] == a[2]) return false; return (a[0] < a[1] && a[2] < a[1]) || (a[0] > a[1] && a[2] > a[1]); } bool checkKadomatsu(const vector<vector<int> >& a) { for(int i=0; i<3; ++i){ vector<int> b(3), c(3); for(int j=0; j<3; ++j){ b[j] = a[i][j]; c[j] = a[j][i]; } if(!checkKadomatsu(b) || !checkKadomatsu(c)) return false; } vector<int> b(3), c(3); for(int i=0; i<3; ++i){ b[i] = a[i][i]; c[i] = a[i][2-i]; } return checkKadomatsu(b) && checkKadomatsu(c); } int main() { int t; cin >> t; while(--t >= 0){ int len; cin >> len; vector<vector<int> > a(3, vector<int>(3)); vector<int> y, x; set<int> s; s.insert(1); s.insert(len); for(int i=0; i<3; ++i){ for(int j=0; j<3; ++j){ cin >> a[i][j]; if(a[i][j] == 0){ y.push_back(i); x.push_back(j); } else{ for(int k=-1; k<=1; ++k){ s.insert(a[i][j] + k); s.insert(len - a[i][j] + k); } } } } int ans = 0; for(auto it=s.begin(); it!=--s.end(); ++it){ auto it2 = it; ++ it2; int p = *it; int q = *it2; if(!(0 < p && p < len)) continue; a[y[0]][x[0]] = p; a[y[1]][x[1]] = len - p; if(checkKadomatsu(a)) ans += q - p; } cout << ans << endl; } return 0; }