結果
| 問題 | No.3723 Climb or Detour |
| コンテスト | |
| ユーザー |
caz37OwO
|
| 提出日時 | 2026-09-20 07:56:54 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 8 ms / 2,000 ms |
| + 755µs | |
| コード長 | 2,828 bytes |
| 記録 | |
| コンパイル時間 | 5,610 ms |
| コンパイル使用メモリ | 390,536 KB |
| 実行使用メモリ | 10,000 KB |
| 最終ジャッジ日時 | 2026-09-20 07:57:16 |
| 合計ジャッジ時間 | 10,626 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 58 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ldub=long double;
using lldub=__float128;
using str=string;
using mint=modint;
template<class T=ll>
using tup2=tuple<T,T>;
template<class T=ll>
using tup3=tuple<T,T,T>;
template<class T=ll>
using tup4=tuple<T,T,T,T>;
template<class T=ll>
using tup5=tuple<T,T,T,T,T>;
template<class T=ll>
using tup6=tuple<T,T,T,T,T,T>;
template<class T=ll>
using tup7=tuple<T,T,T,T,T,T,T>;
template<class T=ll>
using vec=vector<T>;
template<class T=ll>
using vec2=vector<vec<T>>;
template<class T=ll>
using vec3=vector<vec2<T>>;
template<class T=ll>
using vec4=vector<vec3<T>>;
template<class T=ll>
using vec5=vector<vec4<T>>;
template<class T=ll>
using vec6=vector<vec5<T>>;
template<class T>
using que=queue<T>;
template<class T>
using Pque=priority_queue<T>;
template<class T>
using pque=priority_queue<T, vector<T>, greater<T>>;
struct Edge{
ll from,to,w=1,num=-1;
};
using gvec=vector<Edge>;
using gvec2=vector<gvec>;
template<class T>
bool chmax(T &a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T>
bool chmin(T &a,T b){if(b<a){a=b;return 1;}return 0;}
#define pb push_back
#define pf push_front
#define pob pop_back
#define pof pop_front
#define ins insert
#define tup make_tuple
#define low lower_bound
#define pops(a) __builtin_popcountll(a)
#define ctz(a) __builtin_ctzll(a)
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
#define nperm(v) next_permutation(all(v))
#define Yes cout << "Yes" << endl
#define No cout << "No" << endl
#define YN(f) cout << ((f)?"Yes":"No") << endl
const int IINF=2e9;
const ll INF=4e18;
#ifndef LOCAL
#define debug(x)
#endif
// =================================================
void solve(){
ll N,K,sx,sy,tx,ty;
cin >> N >> K >> sx >> sy >> tx >> ty;
sx--,sy--,tx--,ty--;
if(((sx+sy)+(tx+ty)+K)&1){
cout << -1 << endl;
return;
}
ll c=(abs(sx-tx)+abs(sy-ty))/2;
if(K<abs(sx-tx)+abs(sy-ty)||abs(sx-tx)+abs(sy-ty)+2*c<K){
cout << -1 << endl;
return;
}
vec2<char> A(N,vec<char>(N,'.'));
for(ll i=0;i<N;i++){
for(ll j=0;j<N;j++){
if(((sx+sy+i+j)&1)&&tup(i,j)!=tup(tx,ty)) A[i][j]='#';
}
}
ll x=sx,y=sy,k=c-(K-(abs(sx-tx)+abs(sy-ty)))/2;
while(x<tx){
x++;
if(A[x][y]=='#'&&k) k--,A[x][y]='.';
}
while(x>tx){
x--;
if(A[x][y]=='#'&&k) k--,A[x][y]='.';
}
while(y<ty){
y++;
if(A[x][y]=='#'&&k) k--,A[x][y]='.';
}
while(y>ty){
y--;
if(A[x][y]=='#'&&k) k--,A[x][y]='.';
}
for(ll i=0;i<N;i++){
for(ll j=0;j<N;j++) cout << A[i][j];
cout << endl;
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
mint::set_mod(998244353);
// mint::set_mod(1000000007);
ll T=1;
// cin >> T;
while(T--) solve();
return 0;
}
caz37OwO