|
@@ -5,6 +5,7 @@
|
|
|
#define IMP
|
|
#define IMP
|
|
|
#include "../../file.h"
|
|
#include "../../file.h"
|
|
|
#include "../../str.h"
|
|
#include "../../str.h"
|
|
|
|
|
+#include "../../branchless.h"
|
|
|
|
|
|
|
|
struct rect {
|
|
struct rect {
|
|
|
long l;
|
|
long l;
|
|
@@ -12,9 +13,6 @@ struct rect {
|
|
|
long h;
|
|
long h;
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
-#define BL_MIN(v1, v2) ((((v1) >= (v2)) * (v2)) + (((v1) < (v2)) * (v1)))
|
|
|
|
|
-#define BL_MAX(v1, v2) ((((v1) >= (v2)) * (v1)) + (((v1) < (v2)) * (v2)))
|
|
|
|
|
-
|
|
|
|
|
int
|
|
int
|
|
|
main(int argc, char *argv[])
|
|
main(int argc, char *argv[])
|
|
|
{
|
|
{
|