当前位置:网站首页>NLP-D46-nlp比赛D15
NLP-D46-nlp比赛D15
2022-06-11 05:44:00 【甄小胖】
—0557昨天2点睡的(弄完12点啦,有点想熬夜hhh)早上5点多醒了,就醒了。
刚刚改了改程序,现在跑着;
自己去看论文啦!!!
2-不重要-已读
0-重要、需精读
1-重要、已读完
3-一般,未读完
4-一般,已读
-0为知识图谱本身,-1为网安
-----0748经过训练,读论文的时间观已经好很多了,但是总结需要流程化,要不然太慢了!!!
吃早饭!
NER任务
https://blog.csdn.net/qq_33837704/article/details/114142390
—0955
开始刷一下题~
矩阵差分
n,m,q = map(int,input().split())
a = [[0]*(m+2) for _ in range(n+2)]
b = [[0]*(m+2) for _ in range(n+2)]
for i in range(1,1+n):
a[i][1:] = list(map(int,input().split()))
def add(x1,y1,x2,y2,c):
b[x1][y1]+=c
b[x2+1][y1]-=c
b[x1][y2+1]-=c
b[x2+1][y2+1]+=c
for i in range(1,1+n):
for j in range(1,1+m):
add(i,j,i,j,a[i][j])
for _ in range(q):
x1,y1,x2,y2,c = map(int,input().split())
add(x1,y1,x2,y2,c)
for i in range(1,1+n):
for j in range(1,1+m):
b[i][j] += b[i][j-1]+b[i-1][j]-b[i-1][j-1]
print(b[i][j],end = ' ')
print()
799
别忘了改变j的值
n = int(input())
a = list(map(int,input().split()))
j = 0
S = [0]*100010
res = 0
for i in range(n):
S[a[i]]+=1
while j<i and S[a[i]]>1:
S[a[j]]-=1
j+=1
res = max(res, i-j+1)
print(res)
2816
n,m = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
i,j = 0,0
while i<n and j<m:
if a[i]==b[j]:
i+=1
j+=1
else:
j+=1
if i>n-1:
print('Yes')
else:
print('No')
lowbit(x)=x&(-x),返回最后一位1的位置
n = int(input())
a = list(map(int,input().split()))
def lowbit(x):
return x&(-x)
def nums_one(x):
i = 0
while lowbit(x):
i+=1
x-=lowbit(x)
return i
for x in a:
print(nums_one(x), end=' ')
----1033去做核酸啦!!
docker作用
与虚拟机相反,容器将应用程序的执行环境彼此隔离,但共享底层OS内核。它们通常以兆字节为单位,使用的资源比虚拟机少得多,而且几乎是立即启动的。可以做到在相同的硬件上更密集地打包,而不需要花费太多的精力和开销。
https://cloud.tencent.com/developer/news/623446
------2359芜湖该睡了
边栏推荐
- Combination sum Ⅳ -- leetcode exercise
- Slide the receleview horizontally to the far right to listen to the page loading function
- 使用Batch枚舉文件
- NDK learning notes (12) native graphics API, using avilib to create an avi video player
- Recursively process data accumulation
- Maximum number of points on the line ----- hash table solution
- String sorting times --- bubble sorting deformation
- 27. Remove elements
- Games101 job 7-path tracing implementation process & detailed interpretation of code
- When the recyclerview plays more videos, the problem of refreshing the current video is solved.
猜你喜欢

getBackgroundAudioManager控制音乐播放(类名的动态绑定)
![[元数据]LinkedIn-DataHub](/img/6a/247ee77dfc219d26651e5d93b04c98.png)
[元数据]LinkedIn-DataHub

Preliminary understanding of multi task learning

Recherche sur l'optimisation de Spark SQL basée sur CBO pour kangourou Cloud Stack

NFC Development -- difference between ID card and IC card (M1 card and CPU card) (III)

Recommend a free intranet penetration open source software that can be used in the local wechat official account under test

使用Genymotion Scrapy控制手机

If the MAC fails to connect with MySQL, it will start and report an error

袋鼠云数栈基于CBO在Spark SQL优化上的探索

(15) Infrared communication
随机推荐
Install Oracle Database
Reading the registry using batch
Multi threading tutorial (XXIV) cas+volatile
Wxparse parsing iframe playing video
Wechat applet text built-in component newline character does not newline reason
Mingw-w64 installation instructions
Create cool collectionviewcell conversion animation
Write a list with kotlin
Adapter the problem of executing only one animation in multiple frames
AttributeError: ‘HistGradientBoostingClassifier‘ object has no attribute ‘_ n_ features‘
Fix Yum dependency conflict
Manually splicing dynamic JSON strings
深度学习分布式训练
OJDBC在Linux系统下Connection速度慢解决方案
修复Yum依赖冲突
String sorting times --- bubble sorting deformation
Xposed bypasses 360 reinforcement to get a real classloader
使用Batch枚举文件
NFC Development -- difference between ID card and IC card (M1 card and CPU card) (III)
Multi thread tutorial (30) meta sharing mode