#include <bits/stdc++.h>
using namespace std;
const int N = 100000;
int arr[N];
int main()
{
int ans = 0,t;
for(int i = 1;i <= 2020;i++)
{
t = i;
while(t > 0)
{
if(t % 10 == 2) ans++;
t /= 10;
}
}
cout<<ans<<endl;
return 0;
}
试题B :既约分数
#include <bits/stdc++.h>
using namespace std;
int gcd(int a,int b)
{
if(a % b == 0) return b;
return gcd(b,a % b);
}
int main()
{
int ans = 0;
for(int i = 1;i <= 2020;i++)
{
for(int j = 1;j <= 2020;j++)
{
if(gcd(i,j) == 1) ans++;
}
}
cout<<ans<<endl;
return 0;
}
试题C :蛇形填数
#include <bits/stdc++.h>
using namespace std;
int arr[100][100];
int main()
{
int sum = 1;
for(int i = 0;i < 50;i++)
{
//奇数,行-,列+
if(i % 2 == 1)
{
for(int x=i,y=1;x >= 0 && y <= i;x--,y++)
arr[x][y] = sum++;
}
//偶数,行+,列-
else
{
for(int x=1,y=i;x <= i && y >= 0;x++,y--)
arr[x][y] = sum++;
}
}
cout<<arr[20][20]<<endl;
return 0;
}
目录 一. 简述二. 输入输出三. github资源四. 复现推理过程4.1 cuda tensorrt 版 训练修改图像数 一. 简述
原文:Fast-BEV: A Fast and Strong Bird’s-Eye View Perception Baseline FAST BEV是一种高性能、快速推理和部署友好的解决方案,专为自动驾驶车载芯片设计…
解题思路: class Solution {public int[] maxSlidingWindow(int[] nums, int k) {if(nums.length 0 || k 0) return new int[0];Deque<Integer> deque new LinkedList<>();int[] res new int[nums.length - k 1];// 未形成窗口for(int i 0; i <…