cf#758-B. Build the Permutation(补题)

#include<iostream>

using namespace std;

const int N = 1e5 + 10;
int n;
int f[N];
int main () {
	int t;
	cin >> t;
	while (t --) {
		int a, b, n;
		cin >> n >> a >> b;
		if (abs(a - b) > 1 || a + b > n - 2) puts("-1");
		else {
			int x = 1, y = n;
			int z = (a > b);
			for (int i = 1; i<= n; i ++) {
				if (z) f[i] = x ++;
				else f[i] = y --;
				if (i <= a + b) z ^= 1;
			}
			for (int i= 1; i<= n; i ++) cout << f[i] << " ";
			puts("");
		}
	}
	return 0;
}

[Problem - B - Codeforces](https://codeforces.com/contest/1608/problem/B) 每一个波峰都会产生一个波谷,反之亦然。 对于波峰和波谷,谁大谁先产生。

import matplotlib.pyplot as plt import numpy as np import pandas as pd from econml.dml import CausalForestDML from sklearn.model_selection import train_test_split from sklearn.ensemble import RandomForestRegressor from sklearn.linear_model import LogisticRegression from sklearn.tree import plot_tree # 假设 train_data 是您的数据集 Y = train_data["科学素养_正答率new"] T = train_data["result"].map({1: 1, 2: 0}).astype(int) # 处理组标记为1,对照组标记为0 X = train_data[["P1Q1", "P1Q13", "P1Q14", "P1Q17", "P3Q20_b_n", "P3Q15_n", "P3Q22_c", "P3Q22_b", "P3Q23_n", "P3Q22_a", "P1Q10_new", "P1Q9"]] # 划分训练集和测试集 X_train, X_test, y_train, y_test, T_train, T_test = train_test_split(X, Y, T, test_size=0.2, random_state=42) # 初始化因果森林模型(参数修正) cf = CausalForestDML( model_y=RandomForestRegressor(), # Y为连续变量,使用回归模型 model_t=LogisticRegression(max_iter=1000), # T为二分类,使用分类模型 discrete_treatment=True, # 显式声明T为离散变量 n_estimators=500, max_depth=10, max_samples=0.5, honest=True, random_state=42 ) # 训练模型 cf.fit(Y=y_train, T=T_train, X=X_train) # 提取单棵树(假设用于可视化的随机森林模型) single_tree = cf.model_y.estimator_.estimators_[0] # 获取第一棵树 # 绘制因果树图 plt.figure(figsize=(20, 10)) plot_tree(single_tree, feature_names=X.columns, filled=True) plt.title('因果树示例', fontsize=16) plt.savefig(r"C:\Users\86415\Desktop\毕业论文\causal_tree.png", dpi=300, bbox_inches='tight') plt.show()请你根据上面的你的回答,修改这段代码
03-30
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值