結果
問題 | No.223 1マス指定の魔方陣 |
ユーザー |
|
提出日時 | 2021-03-15 17:42:02 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 1,480 bytes |
コンパイル時間 | 2,596 ms |
コンパイル使用メモリ | 197,160 KB |
最終ジャッジ日時 | 2025-01-19 17:18:10 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 46 |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(ll i=0;i<n;i++) #define repl(i,l,r) for(ll i=(l);i<(r);i++) #define per(i,n) for(ll i=(n)-1;i>=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue<x,vector<x>,greater<x>> #define all(x) (x).begin(),(x).end() #define CST(x) cout<<fixed<<setprecision(x) #define rev(x) reverse(x); using ll=long long; using vl=vector<ll>; using vvl=vector<vector<ll>>; using pl=pair<ll,ll>; using vpl=vector<pl>; using vvpl=vector<vpl>; ll MOD=1000000007; ll MOD9=998244353; int inf=1e9+10; ll INF=1e18; ll dy[8]={1,0,-1,0,1,1,-1,-1}; ll dx[8]={0,1,0,-1,1,-1,1,-1}; template <typename T> inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); } template <typename T> inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); } vvl solve2(ll n){ vvl mat(n,vl(n)); ll now=1; rep(i,n){ rep(j,n){ if(abs(i-j)%4==0||(i+j)%4==3)mat[i][j]=now; now++; } } now=1; per(i,n){ per(j,n){ if(!(abs(i-j)%4==0||(i+j)%4==3))mat[i][j]=now; now++; } } return mat; } int main(){ ll n;cin >> n; vvl mat=solve2(n);rep(i,n)rep(j,n)mat[i][j]--; ll x,y,z;cin >> x >> y >> z;x--;y--;z--; ll dif=z^mat[y][x]; rep(i,n)rep(j,n)mat[i][j]^=dif; rep(i,n)rep(j,n)mat[i][j]++; rep(i,n){ rep(j,n)cout << mat[i][j] <<" ";cout << endl; } }