분류 전체보기76 ASAM OpenSCENARIO: User Guide | 3. General Concepts 인턴하면서 새로 다루게 된 OpenSCENARIO에 대해 정리해보겠습니다! 해당 튜토리얼 참고하여 작성했습니다. https://www.asam.net/index.php?eID=dumpFile&t=f&f=4092&token=d3b6a55e911b22179e3c0895fe2caae8f5492467 ASAM OpenSCENARIO: User Guide OpenSCENARIO comprises the specification and file schema for the description of dynamic content in driving simulation applications. The primary use of OpenSCENARIO is the description of complex maneuvers.. 2024. 3. 8. ASAM OpenSCENARIO: User Guide | 1. Introduction 인턴하면서 새로 다루게 된 OpenSCENARIO에 대해 정리해보겠습니다! 해당 튜토리얼 참고하여 작성했습니다. https://www.asam.net/index.php?eID=dumpFile&t=f&f=4092&token=d3b6a55e911b22179e3c0895fe2caae8f5492467 1. Introduction 1.2 Overview 1.2.1 What is a Scenario? how the view of the world changes with time, usually from a specific perspective static environment: e.g. logical road network, physical/geometric road/environment dynamic conten.. 2024. 3. 8. [5719] 거의 최단경로 // 5719 거의 최단경로 // 다익스트라 // 경로 역추적 | 다익스트라 -> 간선 지우기 -> 다익스트라 #include #include #include #include #include #include #define MAX_N500 // 도시 수 #define MAX_M10000 // 도로 수 #define MAX_VALUE 500500 // using namespace std; struct Node{ int dest; int cost; Node(int dest, int cost) : dest(dest), cost(cost){ } // min-heap bool operator a.cost; } }; int N, M, S, D; vector adjList[MAX_N+5]; vector delList[.. 2024. 2. 23. [2098] 외판원 순회 #include #include #include using namespace std; int N, start, W[16][16], dp[16][65536];//1 2024. 2. 23. [5582] 공통 부분 문자열 // 5582 공통 부분 문자열 // dp #include #include #include #define MAX 4001 // 최대 4000글자 using namespace std; int dp[MAX][MAX]; // int max_len = 0; string a, b; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); // 배열 초기화 memset(dp, 0, sizeof(dp)); cin >> a; cin >> b; // dp for(int i=1; i 2024. 2. 23. [9252] LCS2 // 9252 LCS2 // dp #include #include #include #include #define MAX 1001 // 최대 1000글자 using namespace std; stack stk; int dp[MAX][MAX]; string a, b; string ans = ""; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); // 배열 초기화 memset(dp, 0, sizeof(dp)); cin >> a; cin >> b; // dp for(int i=1; i 2024. 2. 23. 이전 1 ··· 6 7 8 9 10 11 12 13 다음