結果
問題 | No.1169 Row and Column and Diagonal |
ユーザー | sakasu1 |
提出日時 | 2020-08-15 00:36:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,011 bytes |
コンパイル時間 | 1,698 ms |
コンパイル使用メモリ | 166,552 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-10 16:58:22 |
合計ジャッジ時間 | 4,999 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 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 | - |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> P; int main(){ bool g[510][510],h[510][510]; int n,a[510][510],i,j,k,l; cin >> n; for(i=0;i<n;i++){ for(j=0;j<n;j++){ g[i][j]=false,h[i][j]=false; } } for(i=0;i<n;i++){ a[i][i]=i; g[i][i]=true,h[i][i]=true; } for(i=0;i<n;i++){ for(j=0;j<n;j++){ if(i==j){ continue; } if(i%2==1){ for(k=0;k<n;k++){ if(g[i][k]==false && h[j][k]==false){ g[i][k]=true,h[j][k]=true; a[i][j]=k; break; } } } else{ for(k=n-1;k>=0;k--){ if(g[i][k]==false && h[j][k]==false){ g[i][k]=true,h[j][k]=true; a[i][j]=k; break; } } } } } for(i=0;i<n;i++){ for(j=0;j<n;j++){ if(j==0){ printf("%d",a[i][j]+1); } else{ printf(" %d",a[i][j]+1); } } printf("\n"); } }