0 #ARC102B. [ABC108D] All Your Paths are Different Lengths

[ABC108D] All Your Paths are Different Lengths

Score : 700700 points

Problem Statement

You are given an integer LL. Construct a directed graph that satisfies the conditions below. The graph may contain multiple edges between the same pair of vertices. It can be proved that such a graph always exists.

  • The number of vertices, NN, is at most 2020. The vertices are given ID numbers from 11 to NN.
  • The number of edges, MM, is at most 6060. Each edge has an integer length between 00 and 10610^6 (inclusive).
  • Every edge is directed from the vertex with the smaller ID to the vertex with the larger ID. That is, 1,2,...,N1,2,...,N is one possible topological order of the vertices.
  • There are exactly LL different paths from Vertex 11 to Vertex NN. The lengths of these paths are all different, and they are integers between 00 and L1L-1.

Here, the length of a path is the sum of the lengths of the edges contained in that path, and two paths are considered different when the sets of the edges contained in those paths are different.

Constraints

  • 2L1062 \leq L \leq 10^6
  • LL is an integer.

Input

Input is given from Standard Input in the following format:

LL

Output

In the first line, print NN and MM, the number of the vertices and edges in your graph. In the ii-th of the following MM lines, print three integers ui,viu_i,v_i and wiw_i, representing the starting vertex, the ending vertex and the length of the ii-th edge. If there are multiple solutions, any of them will be accepted.

4
8 10
1 2 0
2 3 0
3 4 0
1 5 0
2 6 0
3 7 0
4 8 0
5 6 1
6 7 1
7 8 1

In the graph represented by the sample output, there are four paths from Vertex 11 to N=8N=8:

  • 1122334488 with length 00
  • 1122337788 with length 11
  • 1122667788 with length 22
  • 1155667788 with length 33

There are other possible solutions.

5
5 7
1 2 0
2 3 1
3 4 0
4 5 0
2 4 0
1 3 3
3 5 1