結果
問題 | No.1169 Row and Column and Diagonal |
ユーザー | poohbear |
提出日時 | 2020-08-14 21:45:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 21 ms / 2,000 ms |
コード長 | 1,028 bytes |
コンパイル時間 | 2,064 ms |
コンパイル使用メモリ | 202,396 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 14:53:05 |
合計ジャッジ時間 | 3,000 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,824 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | AC | 6 ms
6,816 KB |
testcase_08 | AC | 8 ms
6,820 KB |
testcase_09 | AC | 11 ms
6,816 KB |
testcase_10 | AC | 17 ms
6,816 KB |
testcase_11 | AC | 19 ms
6,816 KB |
testcase_12 | AC | 21 ms
6,820 KB |
testcase_13 | AC | 20 ms
6,820 KB |
testcase_14 | AC | 19 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> #define rep(a,n) for (ll a = 0; a < (n); ++a) using namespace std; typedef long long ll; using ll = long long; typedef pair<ll,ll> P; typedef pair<P,ll> PP; using Graph = vector<vector<ll> >; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const ll INF = 1e18; //input ll n; int ans[510][510]; int solve[510][1010]; int main(){ cin >> n; for(int i=1;i<=n;i++){ solve[i][i]=i; solve[i][i+n]=i; for(int j=1;i-j>0;j++){ solve[i][i+j]=i-j; } for(int j=1;i+j<=n;j++){ solve[i][i+n-j]=i+j; } } for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ ans[i][j]=max(solve[i][j],solve[i][j+n]); } } for(int i=1;i<=n;i++){ for(int j=1;j<n;j++){ cout << ans[i][j] << ' '; } cout << ans[i][n] << endl; } return 0; }