#!/bin/bash
g++ make.cpp -o make -Wall
g++ 1.cpp -o ac -Wall
g++ sb.cpp -o sb -Wall
while true; do
./make > 1.in
./ac < 1.in > 1.out
./sb < 1.in > sb.out
if diff 1.out sb.out; then
printf "AC!"
else
exit
fi
done
[bzoj] 3224 Tyvj 1728 普通平衡树 || 平衡树板子题
Posted Mrha
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[bzoj] 3224 Tyvj 1728 普通平衡树 || 平衡树板子题相关的知识,希望对你有一定的参考价值。
以上是关于[bzoj] 3224 Tyvj 1728 普通平衡树 || 平衡树板子题的主要内容,如果未能解决你的问题,请参考以下文章
BZOJ3224: Tyvj 1728 普通平衡树[treap]