首页 > 小心火烛的歪
头像 Leavery
发表于 2024-11-24 22:28:57
D题 bitset做法 直接枚举所有2^q种情况 因为数据范围很小 所以O(2^q*q*n*m)即可通过该题 #include <iostream> #include <bitset> using namespace std; int main() { int n,m, 展开全文
头像 ddb酱
发表于 2025-11-13 12:10:07
#include <bits/stdc++.h> using namespace std; #define endl "\n" #define pb push_back using vi = vector<int>; using vs = vector&l 展开全文
头像 夜晚的精灵
发表于 2025-09-03 17:33:58
import java.util.*; import java.math.BigInteger; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static long initStatus; pu 展开全文
头像 WTcrazy
发表于 2025-11-16 04:09:24
import java.util.*; public class Main { static int M = 10; static int n, m, p, cnt = M, res; static StringBuilder cd = new StringBuilder( 展开全文
头像 Nanssu
发表于 2025-03-11 15:19:12
#include <iostream> #include <bits/stdc++.h> #include <set> #include <vector> using namespace std; void dfs(vector<int> 展开全文
头像 牛客336387193号
发表于 2025-03-26 19:53:05
用回溯法做,fireworks函数是回溯函数,如果填满了,且步数更少,就记录结果。重载了加减法方便一点。origin数组是记录的杂物,用于checkstone函数确保烟花没有放在杂物上面。 #include <iostream> #include<vector> using 展开全文
头像 在记录秋招的四郎很想去夏威夷
发表于 2025-06-23 21:11:57
from itertools import combinations def main(): n, m, q = map(int, input().split()) gs = "".join(input().strip().replace(" &qu 展开全文
头像 番禺小韭菜
发表于 2025-03-02 21:11:51
#include <iostream> #include <bitset> using namespace std; int main() { int n, m, q; cin >> n >> m >> q; bi 展开全文
头像 在拧螺丝的他很有趣
发表于 2025-03-04 13:42:34
import copy # 获取可能的组合 def get_list(lst): def b(start, path): if path: result.append(path) for i in range(start, len( 展开全文
头像 appley
发表于 2025-11-14 12:06:32
import java.util.Scanner; public class Main { static char[][] map = new char[8][8]; static int[][] fireworks = new int[8][8]; static char 展开全文