CF388B.Fox and Minimal path

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Fox Ciel wants to write a task for a programming contest. The task is: "You are given a simple undirected graph with nn vertexes. Each its edge has unit length. You should calculate the number of shortest paths between vertex 1 and vertex 2."

Same with some writers, she wants to make an example with some certain output: for example, her birthday or the number of her boyfriend. Can you help her to make a test case with answer equal exactly to kk ?

输入格式

The first line contains a single integer kk ( 1<=k<=1091<=k<=10^{9} ).

输出格式

You should output a graph GG with nn vertexes ( 2<=n<=10002<=n<=1000 ). There must be exactly kk shortest paths between vertex 1 and vertex 2 of the graph.

The first line must contain an integer nn . Then adjacency matrix GG with nn rows and nn columns must follow. Each element of the matrix must be 'N' or 'Y'. If GijG_{ij} is 'Y', then graph GG has a edge connecting vertex ii and vertex jj . Consider the graph vertexes are numbered from 1 to nn .

The graph must be undirected and simple: GiiG_{ii} = 'N' and Gij=GjiG_{ij}=G_{ji} must hold. And there must be at least one path between vertex 1 and vertex 2. It's guaranteed that the answer exists. If there multiple correct answers, you can output any of them.

输入输出样例

  • 输入#1

    2

    输出#1

    4
    NNYY
    NNYY
    YYNN
    YYNN
  • 输入#2

    9

    输出#2

    8
    NNYYYNNN
    NNNNNYYY
    YNNNNYYY
    YNNNNYYY
    YNNNNYYY
    NYYYYNNN
    NYYYYNNN
    NYYYYNNN
  • 输入#3

    1

    输出#3

    2
    NY
    YN

说明/提示

In first example, there are 2 shortest paths: 1-3-2 and 1-4-2.

In second example, there are 9 shortest paths: 1-3-6-2, 1-3-7-2, 1-3-8-2, 1-4-6-2, 1-4-7-2, 1-4-8-2, 1-5-6-2, 1-5-7-2, 1-5-8-2.

首页