缺省源模板

缺省源cpp

Time:2024/5/4

虽然这份代码已经用了有半年了,但是很多高手都在批评

#define int long long

不仅降低数据敏感度,还跑得慢,虽然我似乎从来没有因为这个而 t 过

我还是改掉吧

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

#define PII pair<int, int>
#define endl "\n"

const ll inf = 0x3f3f3f3f3f3f3f3f;
const int N = 2e5 + 10;
const int mod = 1e9 + 7;

void solve() {

}

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int t = 1;
    //cin >> t;
    while (t--) {
        solve();
    }
    return 0;
}
posted @ 2024-05-04 15:49  9102700  阅读(69)  评论(0)    收藏  举报