拿到物体的某些数据 using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class game : MonoBehaviour
{// Start is called before the first frame updatevoid Start(){//拿到当前脚本所挂载的游戏物体//GameObject go this.gameObject;…
文章目录 ABCDEFGHIJKL A
n的范围很小暴力直接 O ( n 3 ) O(n^3) O(n3)直接做就行。 我还傻的统计了一下前后缀,不过怎么写都行这道题。
#include <bits/stdc.h>
#define int long long
#define rep(i,a,b) for(int i (a); i < (b); i)
#define fep(i,…