时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
            空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
            Special Judge, 64bit IO Format: %lld
        
     
    题目描述
        
        
    
            
                 Riko is ready to cook hamburger steaks. There are 

 pans and 

 hamburger steaks that need to be fried. The 

-th hamburger steak needs to be fried for 

 (which is a 
positive integer) minutes. Riko can fry it in a certain pan for 

 minutes, or in two different pans for 

 and 

 minutes respectively, where 

 and 

 are both 
positive integers and 

. Riko will start cooking at time 

 and she wants to finish cooking as soon as possible. Please help Riko make a plan to minimize the time spent cooking all the hamburger steaks.  
   
  
     In this problem, we assume that a pan can fry at most one hamburger steak at the same time, and a hamburger steak can be put in at most one pan at the same time. Different pans can fry different hamburger steaks at the same time. We also assume that it takes no time to put a hamburger steak in a pan or take it out.  
  输入描述:
                                                    The first line of the input contains two integers 

 and 
&preview=true)
.
The second line contains  integers
 integers &preview=true) .
.
                                                                            输出描述:
                                                    Output 

 lines. The 

-th line describes the cooking plan for the 

-th hamburger steak.
Each line begins with an integer 
&preview=true)
, representing that Riko will fry the hamburger steak in 

 pans. Then there follow 

 integer triples 
&preview=true) in chronological order
 in chronological order, representing that Riko will fry the hamburger steak in the pan numbered 

 during time 
&preview=true)
.
If there are multiple answers, output any.
                                                                            
                        
                            示例1
                        
                        
                            
                            
                                                                    输出
                                                                复制
                                
                                
                                    1 1 0 1
1 2 0 2
1 2 2 5
1 1 1 5
1 3 0 5
                                 
                             
                                                            
                                    说明
                                    
                                        Other valid outputs, such as the one below, are also acceptable for the example input:
1 1 0 1
1 1 1 3
2 2 0 1 1 3 5
1 2 1 5
1 3 0 5