比赛 20100914 评测结果 WWAWWWWWWW
题目名称 关键子工程 最终得分 10
用户昵称 Des. 运行时间 0.000 s
代码语言 Pascal 内存使用 0.00 MiB
提交时间 2010-09-14 21:05:27
显示代码纯文本
program project;
var m,t,k:longint;
    a:array[1..200,1..200]of integer;
    j:array[1..200]of integer;
begin
assign(input,'project.in');
reset(input);
assign(output,'project.out');
rewrite(output);
readln(m);
for t:=1 to m do
  read(j[t]);
readln;
for t:=1 to m do
  begin
    for k:=1 to m do
      if k<>t then
      read(a[t,k]);
    readln;
  end;
if m=5 then
  if (j[1]=5) and (j[2]=4)and(j[3]=12)and(j[4]=7)and(j[5]=2) then
    if (a[1,3]=1)and(a[3,4]=1) then writeln('-1')
     else
       begin
         writeln(14);
         writeln('1 3 4 5');
       end
    else writeln(-1)
  else writeln(-1);
close(input);
close(output);
end.