• 2021上海市赛【10.10训练补题】


     Dashboard - The 2021 Shanghai Collegiate Programming Contest - Codeforces

    参考题解:2021CCPC上海省赛题解ABCDEGHIJK_2021ccpc上海题解_Hytidel的博客 

    A. 小 A 的点面论(数学几何)

    题解:求平面的法向量(外积法)

    代码:

    1. #include
    2. using namespace std;
    3. typedef long long ll;
    4. typedef double db;
    5. typedef __int128 i128;
    6. const int N=1e5+5;
    7. const i128 mod=998244353;
    8. const int inf=1<<30;
    9. int x1,x2,y1,y2,x3,y3,z1,z2,z3;
    10. int main(){
    11. scanf("%d%d%d%d%d%d",&x1,&y1,&z1,&x2,&y2,&z2);
    12. x3=y1*z2-y2*z1;
    13. y3=-(x1*z2-x2*z1);
    14. z3=x1*y2-x2*y1;
    15. printf("%d %d %d",x3,y3,z3);
    16. }

    G. 鸡哥的雕像 

     题解:当a[ i ]中有一个998244353出现,雕像放在 i 处的答案为其他数的乘积,放在其他处的答案为0;当a[ i ]中有两个及以上998244353出现,所有答案为0

    代码:

    1. #include
    2. using namespace std;
    3. typedef long long ll;
    4. typedef double db;
    5. typedef __int128 i128;
    6. const int N=1e5+5;
    7. const i128 mod=998244353;
    8. const int inf=1<<30;
    9. i128 n;
    10. inline i128 quickp(i128 base,i128 pow){
    11. i128 res=1;
    12. while(pow){
    13. if(pow&1)res=res*base%mod;
    14. pow>>=1;
    15. base=base*base%mod;
    16. }return res;
    17. }
    18. inline i128 inv(i128 x){
    19. return quickp(x,mod-2);
    20. }
    21. inline i128 read(){ //__int128 可以换成 int longlong 基于自己的需求即可
    22. i128 x=0,f=1;
    23. char ch=getchar();
    24. while(ch<'0'||ch>'9'){
    25. if(ch=='-')
    26. f=-1;
    27. ch=getchar();
    28. }
    29. while(ch>='0'&&ch<='9'){
    30. x=x*10+ch-'0';
    31. ch=getchar();
    32. }
    33. return x*f;
    34. }
    35. inline void out(i128 x){ //输出
    36. if(x<0){
    37. putchar('-');
    38. x=-x;
    39. }
    40. if(x>9)
    41. out(x/10);
    42. putchar(x%10+'0');
    43. }
    44. i128 a[N];
    45. i128 res=1;
    46. int main(){
    47. n=read();int cnt=0;
    48. for(i128 i=1;i<=n;i++){
    49. a[i]=read();
    50. if(a[i]!=mod) res=res*a[i]%mod;
    51. else cnt++;
    52. }
    53. if(cnt){
    54. for(i128 i=1;i<=n;i++){
    55. if(a[i]==mod&&cnt==1){
    56. out(res);printf(" ");
    57. }else printf("0 ");
    58. }
    59. }
    60. else{
    61. for(i128 i=1;i<=n;i++){
    62. out(res*inv(a[i])%mod);printf(" ");
    63. }
    64. }
    65. }

    H. 鸡哥的 AI 驾驶(二分)

    题解:

    若会发生事故,则时间越久越可能发生事故,故是否发生事故的性质具有二段性,可二分出其分界点.

    考虑如何check.显然两不同型号的车发生事故的充要条件是它们的相互位置发生改变,即直观上它们互相穿过了对方.注意到每辆车不发生事故的移动范围是数轴上该型号的车最左边与最右边的位置之间的线段,则某型号的车离开该范围也会发生事故.

    考察二分时间的范围.显然耗时最久的是从x=−1e9以速度v=1走到x=1e9,耗时t=2e9,则边界可取[0,2e9+1],其中+1是为了退出循环后断定l=2e9是否有解.

    代码:

    1. #include
    2. using namespace std;
    3. typedef long long ll;
    4. typedef double db;
    5. typedef pair<int,int>pi;
    6. const int mod=1e9+7;
    7. const int N=1e5+5;
    8. inline ll read(){
    9. ll x=0,f=1;
    10. char ch=getchar();
    11. while(ch<'0'||ch>'9'){
    12. if(ch=='-')f=-1;
    13. ch=getchar();
    14. }
    15. while(ch>='0'&&ch<='9'){
    16. x=x*10+ch-'0';
    17. ch=getchar();
    18. }
    19. return x*f;
    20. }
    21. int n,k;
    22. ll res=-1;
    23. struct node{
    24. ll x,v;
    25. int id;
    26. bool operator<(const node&B)const{
    27. if(x!=B.x)return x
    28. return v
    29. }
    30. }a[N];
    31. int seg[N][3];
    32. pairint>tx[N];//{tx,id}
    33. int chk(ll t){//[0,t]不会撞车
    34. for(int i=1;i<=n;i++){
    35. tx[i]={a[i].x+t*a[i].v,i};
    36. }sort(tx+1,tx+1+n);
    37. //检查同一位置是否有不同编号,同一编号区间的车辆是否超出区间
    38. for(int i=2;i<=n;i++){
    39. //printf("tx[%d].x:%lld id:%d\n",i,tx[i].first,tx[i].second);
    40. if(tx[i].first==tx[i-1].first&&tx[i].second!=tx[i-1].second)return 0;
    41. } for(int i=1;i<=n;i++){
    42. //printf("i%d seg[%d]l:%d r:%d\n",i,tx[i].second,seg[tx[i].second][1],seg[tx[i].second][2]);
    43. if(i1]||i>seg[tx[i].second][2])return 0;
    44. }return 1;
    45. }
    46. //1 1 2 2 2 1 1
    47. //[1,2][3,5][6,7]
    48. int main(){
    49. n=read();k=read();
    50. for(int i=1;i<=n;i++){
    51. a[i].x=read();a[i].v=read();a[i].id=read();
    52. }
    53. sort(a+1,a+n+1);
    54. //预处理区间
    55. seg[1][1]=1;seg[n][2]=n;
    56. for(int i=2;i<=n;i++){
    57. if(a[i].id==a[i-1].id)seg[i][1]=seg[i-1][1];
    58. else seg[i][1]=i;
    59. }
    60. for(int i=n-1;i>=1;i--){
    61. if(a[i].id==a[i+1].id)seg[i][2]=seg[i+1][2];
    62. else seg[i][2]=i;
    63. }
    64. ll l=0,r=2e9+1;
    65. while(l<=r){
    66. ll mid=(l+r)/2;
    67. //printf("mid:%lld res%lld\n",mid,res);
    68. if(chk(mid))res=mid,l=mid+1;
    69. else r=mid-1;
    70. }if(res!=2e9+1)printf("%lld",res);
    71. else printf("-1");
    72. return 0;
    73. }

    J. Alice and Bob-1(贪心)

    题解:

    Alice要 |A|-|B| 尽量大,Bob要 |A|-|B|尽量小  <=>  两人每次都选择尽量大的数字

    如:-8 -7 -5  -3 1 3     Alice:-8 -5 1=12  Bob:-7 -3 3=7

    所以可能先选正值最大,也可能先选负值最大,Alice先手则考虑更利于Alice的情况,即在两人每次都选择最大值的情况下 |A|-|S-A| 最大

    代码:

    1. #include
    2. using namespace std;
    3. typedef long long ll;
    4. typedef double db;
    5. const int mod=1e9+7;
    6. const int N=1e5+5;
    7. inline ll read(){
    8. ll x=0,f=1;
    9. char ch=getchar();
    10. while(ch<'0'||ch>'9'){
    11. if(ch=='-')f=-1;
    12. ch=getchar();
    13. }
    14. while(ch>='0'&&ch<='9'){
    15. x=x*10+ch-'0';
    16. ch=getchar();
    17. }
    18. return x*f;
    19. }
    20. ll a[5005];
    21. ll n,s1,s2,s;
    22. int main(){
    23. n=read();
    24. for(int i=1;i<=n;i++){
    25. a[i]=read();
    26. s+=a[i];
    27. }
    28. sort(a+1,a+n+1);
    29. int f=1;
    30. for(int i=n;i>=1;i-=2)s1+=a[i];
    31. for(int i=1;i<=n;i+=2)s2+=a[i];
    32. ll res=max(abs(s1)-abs(s-s1),abs(s2)-abs(s-s2));
    33. printf("%lld",res);
    34. }

     

  • 相关阅读:
    c++香甜的黄油(acwing)
    定时任务报警通知解决方案详解
    python学习手册
    图像哈希:DCT篇
    Mybatis系列之 parameterMap 弃用了
    list.stream().filter(a ->xxx ).collect(Collectors.toList())
    计算机毕业设计Java论坛管理系统(源码+mysql数据库+系统+lw文档)
    关于#数据结构#的问题,请各位专家解答!
    PTA 7-68 Redemption
    看了这篇不用再苦恼如何将视频压缩了
  • 原文地址:https://blog.csdn.net/m0_63851154/article/details/133753850