Skip to content

Commit 172d535

Browse files
committed
fix wrong formula for Liquid
1 parent 494fbae commit 172d535

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

_posts/2026-5-25-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ int main(){
11551155
using namespace std;
11561156
typedef long long ll;
11571157
constexpr const int P=40,Q=40,R=40,D=40,N=P*Q*R,M=100*N+1,inf=0x3f3f3f3f;
1158-
constexpr const int f[4][2]={{-1,0},{0,-1},{1,0},{0,1}};
1158+
constexpr const int f[4][2]={ {-1,0},{0,-1},{1,0},{0,1} };
11591159
constexpr const ll lnf=0x3f3f3f3f3f3f3f3f;
11601160
int p,q,r,d,s,t,v[P+1][Q+1][R+1];
11611161
struct graph{

_posts/2026-7-25-1.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: post
3+
title: "题解:[ARC125E] Snack"
4+
subtitle: "ARC125E"
5+
date: 2026-7-23
6+
author: "TH911"
7+
header-img: "img/2024/10/006.jpeg"
8+
header-mask: 0.4
9+
tags:
10+
- 题解
11+
- 网络流
12+
- 贪心
13+
words:
14+
---
15+

0 commit comments

Comments
 (0)