結果

問題 No.2339 Factorial Paths
ユーザー bayashikobayashiko
提出日時 2023-06-02 22:14:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 2,269 bytes
コンパイル時間 2,232 ms
コンパイル使用メモリ 205,868 KB
実行使用メモリ 7,548 KB
最終ジャッジ日時 2023-08-28 03:54:34
合計ジャッジ時間 10,196 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,408 KB
testcase_01 AC 3 ms
7,268 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 4 ms
7,404 KB
testcase_04 AC 3 ms
7,316 KB
testcase_05 AC 3 ms
7,392 KB
testcase_06 AC 3 ms
7,264 KB
testcase_07 AC 4 ms
7,320 KB
testcase_08 AC 3 ms
7,540 KB
testcase_09 AC 4 ms
7,468 KB
testcase_10 AC 4 ms
7,280 KB
testcase_11 AC 5 ms
7,416 KB
testcase_12 AC 5 ms
7,332 KB
testcase_13 AC 6 ms
7,268 KB
testcase_14 AC 9 ms
7,280 KB
testcase_15 AC 17 ms
7,360 KB
testcase_16 AC 27 ms
7,364 KB
testcase_17 AC 35 ms
7,292 KB
testcase_18 AC 37 ms
7,420 KB
testcase_19 AC 38 ms
7,428 KB
testcase_20 AC 37 ms
7,548 KB
testcase_21 AC 37 ms
7,280 KB
testcase_22 AC 38 ms
7,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//#include<unistd.h>
#pragma GCC optimize("Ofast")
//#pragma GCC target("avx2")
#pragma GCC optimize("unroll-loops")
using namespace std;
//#include<boost/multiprecision/cpp_int.hpp>
//#include<boost/multiprecision/cpp_dec_float.hpp>
//namespace mp=boost::multiprecision;
//#define mulint mp::cpp_int
//#define mulfloat mp::cpp_dec_float_100
struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init;
//#define INF (1<<30)
#define LINF (lint)(1LL<<62)
#define MINF (lint)(2e18)
#define endl "\n"
#define rep(i,n) for(lint (i)=0;(i)<(n);(i)++)
#define reprev(i,n) for(lint (i)=(n-1);(i)>=0;(i)--)
#define flc(x) __builtin_popcountll(x)
#define pint pair<int,int>
#define pdouble pair<double,double>
#define plint pair<lint,lint>
#define fi first
#define se second
#define all(x) x.begin(),x.end()
//#define vec vector<lint>
#define nep(x) next_permutation(all(x))
typedef long long lint;
int dx[8]={1,1,0,-1,-1,-1,0,1};
int dy[8]={0,1,1,1,0,-1,-1,-1};
const int MAX_N=3e5+5;
template<class T>bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}return 0;}
template<class T>bool chmin(T &a,const T &b){if(b<a){a=b;return 1;}return 0;}
//vector<int> bucket[MAX_N/1000];
constexpr int MOD=1000000007;
//constexpr int MOD=998244353;
/*#include<atcoder/all>
using namespace atcoder;
typedef __int128_t llint;*/

vector<plint> binoms;

lint calc(lint N){
    if(N==1) return 0;
    else{
        binoms.push_back({N,N/2});
        return N+1+calc(N/2)+calc((N+1)/2);
    }
}

lint com(lint n,lint r){
    lint ret=1;
    rep(i,r){
        ret*=(n-i);
        ret/=i+1;
    }
    return ret;
}

int main(void){
    lint N;
    cin >> N;
    calc(N);
    if(N==1){
        cout << 1 << " " << 1 << endl;
        cout << "." << endl;
        return 0;
    }
    lint H=1,W=1;
    char S[2000][2000];
    rep(i,2000) rep(j,2000) S[i][j]='#';
    for(auto e:binoms){
        lint addh=e.fi-e.se,addw=e.se;
        for(int i=H;i<=H+addh;i++){
            for(int j=W;j<=W+addw;j++) S[i-1][j-1]='.';
        }
        H+=addh,W+=addw;
        if(H>W) W++;
        else H++;
        S[H-1][W-1]='.';
    }
    cout << H << " " << W << endl;
    rep(i,H){
        rep(j,W) cout << S[i][j];
        cout << endl;
    }

}
0