刻录光盘
Posted godrose
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了刻录光盘相关的知识,希望对你有一定的参考价值。
题面:
思路:
代码:
var map:array[0..201,0..201] of boolean; father:array[0..201] of longint; i,j,k,n,t:longint; begin assign(input,‘cdrom.in‘); reset(input); assign(output,‘cdrom.out‘); rewrite(output); fillchar(map,sizeof(map),false); read(n); for i:=1 to n do begin read(t); while t<>0 do begin map[i,t]:=true; read(t); end; end; for k:=1 to n do for i:=1 to n do for j:=1 to n do if map[i,k] and map[k,j] then map[i,j]:=true; for i:=1 to n do father[i]:=i; for i:=1 to n do for j:=1 to n do if map[i,j] then father[j]:=father[i]; t:=0; for i:=1 to n do if father[i]=i then inc(t); write(t); close(input);close(output); end.
以上是关于刻录光盘的主要内容,如果未能解决你的问题,请参考以下文章
之前已经刻录到光盘的文件,再次打开光盘后显示准备好写入到光盘的文件是啥?
用win7自带刻录功能刻录光盘后,插入电脑总显示:准备好写入光盘中的文件 是怎么回事?