Perl, 32 = 31 + 1 หรือ 73 = 72 + 1 (วงเล็บที่ย่อเล็กสุด)
32 = 31 + 1: มีวงเล็บที่ไม่จำเป็นเพิ่มเติม
การแก้ไข:
- แก้ไขวงเล็บตอนนี้นับด้วย
y///
แก้ไขวงเล็บนับตอนนี้มี
$a
ลบตัวแปรที่ไม่จำเป็น
$_="("x y/)//.s|$|")"x y/(//|er
มันถูกใช้กับสวิตช์เวลาทำงาน -p
(+1 ไบต์)
ไฟล์ทดสอบinput.txt
:
This line has no parentheses
alert(Math.max(1, 2
1+1)*2).toString()
function() { alert('Hello, World!'); })(
(foo))(bar
)))(((
((
))
บรรทัดคำสั่ง:
perl -p script.pl <input.txt
หรือ
perl -pe '$_="("x y/)//.s|$|")"x y/(//|er' <input.txt
ผลลัพธ์:
This line has no parentheses
alert(Math.max(1, 2))
(((1+1)*2).toString())
(((function() { alert('Hello, World!'); })()))
(((foo))(bar))
((()))((()))
(())
(())
Ungolfed:
อัลกอริทึมนั้นง่ายเพียงแค่เพิ่มคู่สำหรับวงเล็บที่พบ
$_ = # $_ is provided as input by switch `-p` and
# it is printed afterwards as output.
# y/X// is used to count the character 'X' in $_
'(' x y/)// # add opening parentheses for each closing parentheses
. s|$|')' x y/(//|er # go right before the end of line and insert
# closing parentheses for each opening parentheses
# in the original string
73 = 72 + 1: การเพิ่มจำนวนขั้นต่ำในวงเล็บ
สคริปต์นี้เพิ่มจำนวนวงเล็บขั้นต่ำเท่านั้นเพื่อให้ได้ผลลัพธ์ที่สมดุล
$a=y/()//cdr;1while$a=~s/\(\)//g;$_=$a=~y/)(/(/dr.$_;s|$|$a=~y/()/)/dr|e
มันถูกใช้กับสวิตช์รันไทม์-p
(+1 ไบต์)
perl -pe "$a=y/()//cdr;1while$a=~s/\(\)//g;$_=$a=~y/)(/(/dr.$_;s|$|$a=~y/()/)/dr|e" <input.txt
ผลลัพธ์:
This line has no parentheses
alert(Math.max(1, 2))
((1+1)*2).toString()
(function() { alert('Hello, World!'); })()
((foo))(bar)
((()))((()))
(())
(())
Ungolfed:
$a = y/()//cdr; # filter parentheses and store in $a
1 while $a =~ s/\(\)//g; # remove matching parentheses
$_ = $a =~ y/)(/(/dr . $_; # add missing opening parentheses at start of string
s|$|$a=~y/()/)/dr|e # insert missing closing parentheses at end of string
81 = 80 + 1: การเพิ่มจำนวนขั้นต่ำในวงเล็บ
นี่เป็นวิธีที่เก่ากว่าเพื่อเพิ่มจำนวนขั้นต่ำของวงเล็บสำหรับผลลัพธ์ที่สมดุล
my($l,$r);s/[()]/($&eq")"&&($r&&$r--||++$l))||$r++/ger;$_="("x$l.$_;s/$/")"x$r/e
มันใช้ Perl 5.14 (เนื่องจากตัวดัดแปลงการแทนที่แบบไม่ทำลาย) และสวิตช์รันไทม์-p
(+1 ไบต์)
perl -p script.pl <input.txt
ผลลัพธ์:
This line has no parentheses
alert(Math.max(1, 2))
((1+1)*2).toString()
(function() { alert('Hello, World!'); })()
((foo))(bar)
((()))((()))
(())
(())
Ungolfed:
# The while loop is added by option "-p".
LINE:
while (<>) {
# $_ contains the current line
my ($l, $r); # initializes $l and $r (to undef/kind of indirect 0)
# Modifiers for the following substitution of $_:
# /g: process all parentheses
# /e: evaluate code
# /r: does not change the original input string $_ (Perl 5.14)
s/[()]/
# $& contains the matched parentheses
# $r is a balance level counter; at the end $r contains
# the number of needed closing parentheses
# $l is the number of needed opening parentheses;
# if $r would go negative, then an opening parentheses
# is missing and $l is increases and $r remains zero.
(
$& eq ")" && # case ")"
($r && $r-- # close a parentheses group and update balance counter
|| ++$l) # or update $l if an opening parentheses is needed
)
|| $r++ # case "(": increase balance counter
/ger;
$_ = "(" x $l . $_; # add opening parentheses at the begin of line
s/$/")" x $r/e # add closing parentheses before the line end
# the remainder is added by run-time switch "-p"
} continue {
print or die "-p destination: $!\n";
}
()
parens หรือทำวงเล็บอื่น ๆ{}
,[]
,<>
ฯลฯ จำเป็นที่จะต้องได้รับการพิจารณาเช่นกัน?