- 最好在要加入的势力的高安空间站中加入势力(比如在C高安加入C卫队,在A高安加入A卫队)。
- 在去绕杆子前,一定要检查自己是否已经加入卫队了。
- 杆子分为侦察、小型、中型、大型、开放等,分别能进护卫、驱逐、巡洋、战巡、战列等。最好进入你所驾驶的船刚好能允许进入的杆子,单人不要越级挑战(比如驱逐就进入小型杆子)。
- 杆子信号分为NVY和ADV,NVY只能进T1以及海军型;ADV能进T2,所以优先进NVY,较为安全。
- 杆子信号中的1或者5代表着人数限制,实际情况中人数小于等于限制时收益最好。
- 千万不要主动向盟友开火,他打你后,你可以反击。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdlib> | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
wstring StringToWString(const string& str) | |
{ | |
wstring wstr; | |
size_t size; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <iostream> | |
#include <vector> | |
#include <algorithm> | |
#include <stack> | |
using namespace std; | |
struct Edge | |
{ | |
int Start = -1; |